Index: src/profiler/tracing-cpu-profiler.h |
diff --git a/src/profiler/tracing-cpu-profiler.h b/src/profiler/tracing-cpu-profiler.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..80f1bdcc9286bbb225eb2d7fe4be812a326c31a8 |
--- /dev/null |
+++ b/src/profiler/tracing-cpu-profiler.h |
@@ -0,0 +1,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 |