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/snapshot/serialize.h

Issue 1091983002: Correctly name header macros for src/snapshot/*.h. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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/snapshot/natives.h ('k') | src/snapshot/snapshot.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 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 #ifndef V8_SERIALIZE_H_ 5 #ifndef V8_SNAPSHOT_SERIALIZE_H_
6 #define V8_SERIALIZE_H_ 6 #define V8_SNAPSHOT_SERIALIZE_H_
7 7
8 #include "src/hashmap.h" 8 #include "src/hashmap.h"
9 #include "src/heap-profiler.h" 9 #include "src/heap-profiler.h"
10 #include "src/isolate.h" 10 #include "src/isolate.h"
11 #include "src/snapshot/snapshot-source-sink.h" 11 #include "src/snapshot/snapshot-source-sink.h"
12 12
13 namespace v8 { 13 namespace v8 {
14 namespace internal { 14 namespace internal {
15 15
16 class ScriptData; 16 class ScriptData;
(...skipping 977 matching lines...) Expand 10 before | Expand all | Expand 10 after
994 static const int kNumReservationsOffset = 994 static const int kNumReservationsOffset =
995 kNumInternalizedStringsOffset + kInt32Size; 995 kNumInternalizedStringsOffset + kInt32Size;
996 static const int kNumCodeStubKeysOffset = kNumReservationsOffset + kInt32Size; 996 static const int kNumCodeStubKeysOffset = kNumReservationsOffset + kInt32Size;
997 static const int kPayloadLengthOffset = kNumCodeStubKeysOffset + kInt32Size; 997 static const int kPayloadLengthOffset = kNumCodeStubKeysOffset + kInt32Size;
998 static const int kChecksum1Offset = kPayloadLengthOffset + kInt32Size; 998 static const int kChecksum1Offset = kPayloadLengthOffset + kInt32Size;
999 static const int kChecksum2Offset = kChecksum1Offset + kInt32Size; 999 static const int kChecksum2Offset = kChecksum1Offset + kInt32Size;
1000 static const int kHeaderSize = kChecksum2Offset + kInt32Size; 1000 static const int kHeaderSize = kChecksum2Offset + kInt32Size;
1001 }; 1001 };
1002 } } // namespace v8::internal 1002 } } // namespace v8::internal
1003 1003
1004 #endif // V8_SERIALIZE_H_ 1004 #endif // V8_SNAPSHOT_SERIALIZE_H_
OLDNEW
« no previous file with comments | « src/snapshot/natives.h ('k') | src/snapshot/snapshot.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698