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

Side by Side Diff: src/profile-generator.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/prettyprinter.cc ('k') | src/runtime-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
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/profile-generator.h"
6
7 #include "src/profile-generator-inl.h"
8 6
9 #include "src/compiler.h" 7 #include "src/compiler.h"
10 #include "src/debug/debug.h" 8 #include "src/debug/debug.h"
11 #include "src/deoptimizer.h" 9 #include "src/deoptimizer.h"
12 #include "src/global-handles.h" 10 #include "src/global-handles.h"
11 #include "src/profile-generator-inl.h"
13 #include "src/sampler.h" 12 #include "src/sampler.h"
14 #include "src/scopeinfo.h" 13 #include "src/scopeinfo.h"
15 #include "src/splay-tree-inl.h" 14 #include "src/splay-tree-inl.h"
16 #include "src/unicode.h" 15 #include "src/unicode.h"
17 16
18 namespace v8 { 17 namespace v8 {
19 namespace internal { 18 namespace internal {
20 19
21 20
22 JITLineInfoTable::JITLineInfoTable() {} 21 JITLineInfoTable::JITLineInfoTable() {}
(...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after
695 case EXTERNAL: 694 case EXTERNAL:
696 return program_entry_; 695 return program_entry_;
697 case IDLE: 696 case IDLE:
698 return idle_entry_; 697 return idle_entry_;
699 default: return NULL; 698 default: return NULL;
700 } 699 }
701 } 700 }
702 701
703 } // namespace internal 702 } // namespace internal
704 } // namespace v8 703 } // namespace v8
OLDNEW
« no previous file with comments | « src/prettyprinter.cc ('k') | src/runtime-profiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698