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

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

Issue 1285183010: Remove grab-bag includes of v8.h from everywhere. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Minor stylistic issue. Created 5 years, 4 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/counters.cc ('k') | src/date.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 #include "src/v8.h" 5 #include "src/cpu-profiler.h"
6
7 #include "src/cpu-profiler-inl.h"
8 6
9 #include "src/compiler.h" 7 #include "src/compiler.h"
8 #include "src/cpu-profiler-inl.h"
10 #include "src/deoptimizer.h" 9 #include "src/deoptimizer.h"
11 #include "src/frames-inl.h" 10 #include "src/frames-inl.h"
12 #include "src/hashmap.h" 11 #include "src/hashmap.h"
13 #include "src/log-inl.h" 12 #include "src/log-inl.h"
14 #include "src/vm-state-inl.h" 13 #include "src/vm-state-inl.h"
15 14
16 #include "include/v8-profiler.h" 15 #include "include/v8-profiler.h"
17 16
18 namespace v8 { 17 namespace v8 {
19 namespace internal { 18 namespace internal {
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 Builtins::Name id = static_cast<Builtins::Name>(i); 541 Builtins::Name id = static_cast<Builtins::Name>(i);
543 rec->start = builtins->builtin(id)->address(); 542 rec->start = builtins->builtin(id)->address();
544 rec->builtin_id = id; 543 rec->builtin_id = id;
545 processor_->Enqueue(evt_rec); 544 processor_->Enqueue(evt_rec);
546 } 545 }
547 } 546 }
548 547
549 548
550 } // namespace internal 549 } // namespace internal
551 } // namespace v8 550 } // namespace v8
OLDNEW
« no previous file with comments | « src/counters.cc ('k') | src/date.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698