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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ToV8ForCore.h

Issue 2809243002: Split ToV8.h (Closed)
Patch Set: Rebase Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/bindings/core/v8/ToV8ForCore.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/ToV8ForCore.h b/third_party/WebKit/Source/bindings/core/v8/ToV8ForCore.h
new file mode 100644
index 0000000000000000000000000000000000000000..a41ba2c3033e4326a6e5694f5255590fe4e78e7b
--- /dev/null
+++ b/third_party/WebKit/Source/bindings/core/v8/ToV8ForCore.h
@@ -0,0 +1,57 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef ToV8ForCore_h
+#define ToV8ForCore_h
+
+// ToV8() provides C++ -> V8 conversion. Note that ToV8() can return an empty
+// handle. Call sites must check IsEmpty() before using return value.
+
+#include "bindings/core/v8/ScriptWrappable.h"
+#include "bindings/core/v8/ToV8.h"
+#include "core/CoreExport.h"
+#include "core/dom/NotShared.h"
+#include "v8/include/v8.h"
+
+namespace blink {
+
+class DOMWindow;
+class Dictionary;
+class EventTarget;
+class Node;
+
+inline v8::Local<v8::Value> ToV8(Node* impl,
+ v8::Local<v8::Object> creation_context,
+ v8::Isolate* isolate) {
+ return ToV8(ScriptWrappable::FromNode(impl), creation_context, isolate);
+}
+
+// Special versions for DOMWindow and EventTarget
+
+CORE_EXPORT v8::Local<v8::Value> ToV8(DOMWindow*,
+ v8::Local<v8::Object> creation_context,
+ v8::Isolate*);
+CORE_EXPORT v8::Local<v8::Value> ToV8(EventTarget*,
+ v8::Local<v8::Object> creation_context,
+ v8::Isolate*);
+
+// Dictionary
+
+inline v8::Local<v8::Value> ToV8(const Dictionary& value,
+ v8::Local<v8::Object> creation_context,
+ v8::Isolate* isolate) {
+ NOTREACHED();
+ return v8::Undefined(isolate);
+}
+
+template <typename T>
+inline v8::Local<v8::Value> ToV8(NotShared<T> value,
+ v8::Local<v8::Object> creation_context,
+ v8::Isolate* isolate) {
+ return ToV8(value.View(), creation_context, isolate);
+}
+
+} // namespace blink
+
+#endif // ToV8ForCore_h
« no previous file with comments | « third_party/WebKit/Source/bindings/core/v8/ToV8.cpp ('k') | third_party/WebKit/Source/bindings/core/v8/ToV8ForCore.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698