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

Side by Side Diff: src/spaces.h

Issue 304153016: Use full include paths everywhere (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « src/snapshot-empty.cc ('k') | src/spaces.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 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 #ifndef V8_SPACES_H_ 5 #ifndef V8_SPACES_H_
6 #define V8_SPACES_H_ 6 #define V8_SPACES_H_
7 7
8 #include "allocation.h" 8 #include "src/allocation.h"
9 #include "hashmap.h" 9 #include "src/hashmap.h"
10 #include "list.h" 10 #include "src/list.h"
11 #include "log.h" 11 #include "src/log.h"
12 #include "platform/mutex.h" 12 #include "src/platform/mutex.h"
13 #include "utils.h" 13 #include "src/utils.h"
14 14
15 namespace v8 { 15 namespace v8 {
16 namespace internal { 16 namespace internal {
17 17
18 class Isolate; 18 class Isolate;
19 19
20 // ----------------------------------------------------------------------------- 20 // -----------------------------------------------------------------------------
21 // Heap structures: 21 // Heap structures:
22 // 22 //
23 // A JS heap consists of a young generation, an old generation, and a large 23 // A JS heap consists of a young generation, an old generation, and a large
(...skipping 2972 matching lines...) Expand 10 before | Expand all | Expand 10 after
2996 } 2996 }
2997 // Must be small, since an iteration is used for lookup. 2997 // Must be small, since an iteration is used for lookup.
2998 static const int kMaxComments = 64; 2998 static const int kMaxComments = 64;
2999 }; 2999 };
3000 #endif 3000 #endif
3001 3001
3002 3002
3003 } } // namespace v8::internal 3003 } } // namespace v8::internal
3004 3004
3005 #endif // V8_SPACES_H_ 3005 #endif // V8_SPACES_H_
OLDNEW
« no previous file with comments | « src/snapshot-empty.cc ('k') | src/spaces.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698