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

Side by Side Diff: src/v8.h

Issue 1283833002: [heap] Avoid inclusion of heap internals in v8.h header. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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/heap/heap-inl.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 // 5 //
6 // Top include for all V8 .cc files. 6 // Top include for all V8 .cc files.
7 // 7 //
8 8
9 #ifndef V8_V8_H_ 9 #ifndef V8_V8_H_
10 #define V8_V8_H_ 10 #define V8_V8_H_
(...skipping 17 matching lines...) Expand all
28 // Basic includes 28 // Basic includes
29 #include "include/v8.h" 29 #include "include/v8.h"
30 #include "include/v8-platform.h" 30 #include "include/v8-platform.h"
31 #include "src/checks.h" // NOLINT 31 #include "src/checks.h" // NOLINT
32 #include "src/allocation.h" // NOLINT 32 #include "src/allocation.h" // NOLINT
33 #include "src/assert-scope.h" // NOLINT 33 #include "src/assert-scope.h" // NOLINT
34 #include "src/utils.h" // NOLINT 34 #include "src/utils.h" // NOLINT
35 #include "src/flags.h" // NOLINT 35 #include "src/flags.h" // NOLINT
36 #include "src/globals.h" // NOLINT 36 #include "src/globals.h" // NOLINT
37 37
38 // Objects & heap 38 // Objects
39 #include "src/objects-inl.h" // NOLINT 39 #include "src/objects-inl.h" // NOLINT
40 #include "src/heap/spaces-inl.h" // NOLINT
41 #include "src/heap/incremental-marking-inl.h" // NOLINT
42 #include "src/log-inl.h" // NOLINT 40 #include "src/log-inl.h" // NOLINT
43 #include "src/handles-inl.h" // NOLINT 41 #include "src/handles-inl.h" // NOLINT
44 #include "src/types-inl.h" // NOLINT 42 #include "src/types-inl.h" // NOLINT
45 43
46 namespace v8 { 44 namespace v8 {
47 namespace internal { 45 namespace internal {
48 46
49 class V8 : public AllStatic { 47 class V8 : public AllStatic {
50 public: 48 public:
51 // Global actions. 49 // Global actions.
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 }; 81 };
84 82
85 83
86 // JavaScript defines two kinds of 'nil'. 84 // JavaScript defines two kinds of 'nil'.
87 enum NilValue { kNullValue, kUndefinedValue }; 85 enum NilValue { kNullValue, kUndefinedValue };
88 86
89 87
90 } } // namespace v8::internal 88 } } // namespace v8::internal
91 89
92 #endif // V8_V8_H_ 90 #endif // V8_V8_H_
OLDNEW
« no previous file with comments | « src/heap/heap-inl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698