Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: src/profiler/tracing-cpu-profiler.h

Issue 2378143003: [profiler] Introduce Tracing CPU profiler V8 API. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/v8-profiler.h ('k') | src/profiler/tracing-cpu-profiler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
OLDNEW
« no previous file with comments | « include/v8-profiler.h ('k') | src/profiler/tracing-cpu-profiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698