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

Unified Diff: Source/bindings/tests/results/V8TestNode.cpp

Issue 478243002: bindings: Adds virtual ScriptWrappable::wrap method. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced and sent out to the code review. Created 6 years, 4 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: Source/bindings/tests/results/V8TestNode.cpp
diff --git a/Source/bindings/tests/results/V8TestNode.cpp b/Source/bindings/tests/results/V8TestNode.cpp
index 092d0bfef1c2f9d609ffb3412b32a8e6291157f4..99772446c78c4faced84b50d24746074f5c99475 100644
--- a/Source/bindings/tests/results/V8TestNode.cpp
+++ b/Source/bindings/tests/results/V8TestNode.cpp
@@ -37,6 +37,14 @@ namespace blink {
const WrapperTypeInfo V8TestNode::wrapperTypeInfo = { gin::kEmbedderBlink, V8TestNode::domTemplate, V8TestNode::refObject, V8TestNode::derefObject, V8TestNode::createPersistentHandle, 0, V8TestNode::toEventTarget, 0, V8TestNode::installConditionallyEnabledMethods, V8TestNode::installConditionallyEnabledProperties, &V8Node::wrapperTypeInfo, WrapperTypeObjectPrototype, WillBeGarbageCollectedObject };
+// The definition of TestNode's WrapperTypeInfo. If TestNode inherits
+// from ScriptWrappable, you have to write DEFINE_WRAPPERTYPEINFO macro in the
+// class definition. Otherwise, you have to write NotScriptWrappable in the IDL
+// file as an extended attribute in order to let IDL compiler know that
+// TestNode doesn't inherit from ScriptWrappable. Note that
+// NotScriptWrappable is inheritable.
+const WrapperTypeInfo& TestNode::s_wrapperTypeInfo = V8TestNode::wrapperTypeInfo;
+
namespace TestNodeV8Internal {
template <typename T> void V8_USE(T) { }

Powered by Google App Engine
This is Rietveld 408576698