OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef V8_PROFILER_TRACING_CPU_PROFILER_H |
| 6 #define V8_PROFILER_TRACING_CPU_PROFILER_H |
| 7 |
| 8 #include "include/v8-profiler.h" |
| 9 #include "src/base/macros.h" |
| 10 |
| 11 namespace v8 { |
| 12 namespace internal { |
| 13 |
| 14 class TracingCpuProfilerImpl final : public TracingCpuProfiler { |
| 15 public: |
| 16 explicit TracingCpuProfilerImpl(Isolate*); |
| 17 ~TracingCpuProfilerImpl(); |
| 18 |
| 19 private: |
| 20 DISALLOW_COPY_AND_ASSIGN(TracingCpuProfilerImpl); |
| 21 }; |
| 22 |
| 23 } // namespace internal |
| 24 } // namespace v8 |
| 25 |
| 26 #endif // V8_PROFILER_TRACING_CPU_PROFILER_H |
OLD | NEW |