OLD | NEW |
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 Loading... |
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_ |
OLD | NEW |