Index: Source/web/WebBindings.cpp |
diff --git a/Source/web/WebBindings.cpp b/Source/web/WebBindings.cpp |
index d9da0cafebcccdb55713ffae7df98f5d73c0f126..73966839e3ce2fd97c0f062224b5856beec8a6e0 100644 |
--- a/Source/web/WebBindings.cpp |
+++ b/Source/web/WebBindings.cpp |
@@ -36,6 +36,7 @@ |
#include "bindings/v8/NPV8Object.h" // for PrivateIdentifier |
#include "bindings/v8/ScriptController.h" |
#include "bindings/v8/V8DOMWrapper.h" |
+#include "bindings/v8/V8NPObject.h" |
#include "bindings/v8/V8NPUtils.h" |
#include "bindings/v8/custom/V8ArrayBufferCustom.h" |
#include "bindings/v8/custom/V8ArrayBufferViewCustom.h" |
@@ -182,6 +183,11 @@ void WebBindings::unregisterObject(NPObject* object) |
_NPN_UnregisterObject(object); |
} |
+void WebBindings::dropV8WrapperForObject(NPObject* object) |
+{ |
+ WebCore::forgetV8ObjectForNPObject(object); |
+} |
+ |
NPUTF8* WebBindings::utf8FromIdentifier(NPIdentifier identifier) |
{ |
return _NPN_UTF8FromIdentifier(identifier); |