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

Side by Side Diff: third_party/WebKit/Source/platform/v8_inspector/V8Compat.h

Issue 2295913003: [DevTools] Switch from platform/v8_inspector to v8/v8-inspector.h. (Closed)
Patch Set: rebase 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef V8Compat_h
6 #define V8Compat_h
7
8 #include <v8.h>
9
10 #if V8_MAJOR_VERSION < 5 || (V8_MAJOR_VERSION == 5 && V8_MINOR_VERSION < 1)
11 namespace v8 {
12
13 // In standalone V8 inspector this is expected to be noop anyways...
14 class V8_EXPORT MicrotasksScope {
15 public:
16 enum Type { kRunMicrotasks, kDoNotRunMicrotasks };
17
18 MicrotasksScope(Isolate* isolate, Type type)
19 {
20 // No-op
21 }
22 };
23
24 } // namespace v8
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)
30 #endif // V8_MAJOR_VERSION < 5 || (V8_MAJOR_VERSION == 5 && V8_MINOR_VERSION < 1 )
31
32 #endif // V8Compat_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698