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

Side by Side Diff: src/v8.h

Issue 885813002: Minor refactoring for Zone class and friends. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 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/type-info.h ('k') | src/zone.h » ('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 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 26 matching lines...) Expand all
37 37
38 // Objects & heap 38 // Objects & heap
39 #include "src/objects-inl.h" // NOLINT 39 #include "src/objects-inl.h" // NOLINT
40 #include "src/heap/spaces-inl.h" // NOLINT 40 #include "src/heap/spaces-inl.h" // NOLINT
41 #include "src/heap/heap-inl.h" // NOLINT 41 #include "src/heap/heap-inl.h" // NOLINT
42 #include "src/heap/incremental-marking-inl.h" // NOLINT 42 #include "src/heap/incremental-marking-inl.h" // NOLINT
43 #include "src/heap/mark-compact-inl.h" // NOLINT 43 #include "src/heap/mark-compact-inl.h" // NOLINT
44 #include "src/log-inl.h" // NOLINT 44 #include "src/log-inl.h" // NOLINT
45 #include "src/handles-inl.h" // NOLINT 45 #include "src/handles-inl.h" // NOLINT
46 #include "src/types-inl.h" // NOLINT 46 #include "src/types-inl.h" // NOLINT
47 #include "src/zone-inl.h" // NOLINT
48 47
49 namespace v8 { 48 namespace v8 {
50 namespace internal { 49 namespace internal {
51 50
52 class V8 : public AllStatic { 51 class V8 : public AllStatic {
53 public: 52 public:
54 // Global actions. 53 // Global actions.
55 54
56 static bool Initialize(); 55 static bool Initialize();
57 static void TearDown(); 56 static void TearDown();
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 }; 95 };
97 96
98 97
99 // JavaScript defines two kinds of 'nil'. 98 // JavaScript defines two kinds of 'nil'.
100 enum NilValue { kNullValue, kUndefinedValue }; 99 enum NilValue { kNullValue, kUndefinedValue };
101 100
102 101
103 } } // namespace v8::internal 102 } } // namespace v8::internal
104 103
105 #endif // V8_V8_H_ 104 #endif // V8_V8_H_
OLDNEW
« no previous file with comments | « src/type-info.h ('k') | src/zone.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698