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

Side by Side Diff: src/value-serializer.h

Issue 2344143003: Moved zones and zone related stuff in its own directory. (Closed)
Patch Set: Merge branch 'master' into zonefolder Created 4 years, 3 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/v8.gyp ('k') | src/wasm/ast-decoder.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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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_VALUE_SERIALIZER_H_ 5 #ifndef V8_VALUE_SERIALIZER_H_
6 #define V8_VALUE_SERIALIZER_H_ 6 #define V8_VALUE_SERIALIZER_H_
7 7
8 #include <cstdint> 8 #include <cstdint>
9 #include <vector> 9 #include <vector>
10 10
11 #include "include/v8.h" 11 #include "include/v8.h"
12 #include "src/base/compiler-specific.h" 12 #include "src/base/compiler-specific.h"
13 #include "src/base/macros.h" 13 #include "src/base/macros.h"
14 #include "src/identity-map.h" 14 #include "src/identity-map.h"
15 #include "src/messages.h" 15 #include "src/messages.h"
16 #include "src/vector.h" 16 #include "src/vector.h"
17 #include "src/zone.h" 17 #include "src/zone/zone.h"
18 18
19 namespace v8 { 19 namespace v8 {
20 namespace internal { 20 namespace internal {
21 21
22 class HeapNumber; 22 class HeapNumber;
23 class Isolate; 23 class Isolate;
24 class JSArrayBuffer; 24 class JSArrayBuffer;
25 class JSArrayBufferView; 25 class JSArrayBufferView;
26 class JSDate; 26 class JSDate;
27 class JSMap; 27 class JSMap;
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 Handle<FixedArray> id_map_; 256 Handle<FixedArray> id_map_;
257 MaybeHandle<SeededNumberDictionary> array_buffer_transfer_map_; 257 MaybeHandle<SeededNumberDictionary> array_buffer_transfer_map_;
258 258
259 DISALLOW_COPY_AND_ASSIGN(ValueDeserializer); 259 DISALLOW_COPY_AND_ASSIGN(ValueDeserializer);
260 }; 260 };
261 261
262 } // namespace internal 262 } // namespace internal
263 } // namespace v8 263 } // namespace v8
264 264
265 #endif // V8_VALUE_SERIALIZER_H_ 265 #endif // V8_VALUE_SERIALIZER_H_
OLDNEW
« no previous file with comments | « src/v8.gyp ('k') | src/wasm/ast-decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698