aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/src/profiler/tracing-cpu-profiler.h
blob: 80f1bdcc9286bbb225eb2d7fe4be812a326c31a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef V8_PROFILER_TRACING_CPU_PROFILER_H
#define V8_PROFILER_TRACING_CPU_PROFILER_H

#include "include/v8-profiler.h"
#include "src/base/macros.h"

namespace v8 {
namespace internal {

class TracingCpuProfilerImpl final : public TracingCpuProfiler {
 public:
  explicit TracingCpuProfilerImpl(Isolate*);
  ~TracingCpuProfilerImpl();

 private:
  DISALLOW_COPY_AND_ASSIGN(TracingCpuProfilerImpl);
};

}  // namespace internal
}  // namespace v8

#endif  // V8_PROFILER_TRACING_CPU_PROFILER_H