OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium 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 V8Compat_h | 5 #ifndef V8Compat_h |
6 #define V8Compat_h | 6 #define V8Compat_h |
7 | 7 |
8 #include <v8.h> | 8 #include <v8.h> |
9 | 9 |
10 #if V8_MAJOR_VERSION < 5 || (V8_MAJOR_VERSION == 5 && V8_MINOR_VERSION < 1) | 10 #if V8_MAJOR_VERSION < 5 || (V8_MAJOR_VERSION == 5 && V8_MINOR_VERSION < 1) |
11 namespace v8 { | 11 namespace v8 { |
12 | 12 |
13 // In standalone V8 inspector this is expected to be noop anyways... | 13 // In standalone V8 inspector this is expected to be noop anyways... |
14 class V8_EXPORT MicrotasksScope { | 14 class V8_EXPORT MicrotasksScope { |
15 public: | 15 public: |
16 enum Type { kRunMicrotasks, kDoNotRunMicrotasks }; | 16 enum Type { kRunMicrotasks, kDoNotRunMicrotasks }; |
17 | 17 |
18 MicrotasksScope(Isolate* isolate, Type type) | 18 MicrotasksScope(Isolate* isolate, Type type) |
19 { | 19 { |
20 // No-op | 20 // No-op |
21 } | 21 } |
22 }; | 22 }; |
23 | 23 |
24 } // namespace v8 | 24 } // namespace v8 |
25 | 25 #define V8_FUNCTION_NEW_REMOVE_PROTOTYPE(context, callback, data, length) \ |
| 26 v8::Function::New((context), (callback), (data), (length)) |
| 27 #else |
| 28 #define V8_FUNCTION_NEW_REMOVE_PROTOTYPE(context, callback, data, length) \ |
| 29 v8::Function::New((context), (callback), (data), (length), v8::ConstructorBe
havior::kThrow) |
26 #endif // V8_MAJOR_VERSION < 5 || (V8_MAJOR_VERSION == 5 && V8_MINOR_VERSION < 1
) | 30 #endif // V8_MAJOR_VERSION < 5 || (V8_MAJOR_VERSION == 5 && V8_MINOR_VERSION < 1
) |
27 | 31 |
28 #endif // V8Compat_h | 32 #endif // V8Compat_h |
OLD | NEW |