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

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

Issue 2125023004: Remove v8- prefix of file name in libsampler. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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 | « src/log.cc ('k') | src/v8.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_PROFILER_CPU_PROFILER_H_ 5 #ifndef V8_PROFILER_CPU_PROFILER_H_
6 #define V8_PROFILER_CPU_PROFILER_H_ 6 #define V8_PROFILER_CPU_PROFILER_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
11 #include "src/base/atomic-utils.h" 11 #include "src/base/atomic-utils.h"
12 #include "src/base/atomicops.h" 12 #include "src/base/atomicops.h"
13 #include "src/base/platform/time.h" 13 #include "src/base/platform/time.h"
14 #include "src/compiler.h" 14 #include "src/compiler.h"
15 #include "src/isolate.h" 15 #include "src/isolate.h"
16 #include "src/libsampler/v8-sampler.h" 16 #include "src/libsampler/sampler.h"
17 #include "src/locked-queue.h" 17 #include "src/locked-queue.h"
18 #include "src/profiler/circular-queue.h" 18 #include "src/profiler/circular-queue.h"
19 #include "src/profiler/profiler-listener.h" 19 #include "src/profiler/profiler-listener.h"
20 #include "src/profiler/tick-sample.h" 20 #include "src/profiler/tick-sample.h"
21 21
22 namespace v8 { 22 namespace v8 {
23 namespace internal { 23 namespace internal {
24 24
25 // Forward declarations. 25 // Forward declarations.
26 class CodeEntry; 26 class CodeEntry;
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 bool is_profiling_; 232 bool is_profiling_;
233 233
234 DISALLOW_COPY_AND_ASSIGN(CpuProfiler); 234 DISALLOW_COPY_AND_ASSIGN(CpuProfiler);
235 }; 235 };
236 236
237 } // namespace internal 237 } // namespace internal
238 } // namespace v8 238 } // namespace v8
239 239
240 240
241 #endif // V8_PROFILER_CPU_PROFILER_H_ 241 #endif // V8_PROFILER_CPU_PROFILER_H_
OLDNEW
« no previous file with comments | « src/log.cc ('k') | src/v8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698