| Index: Source/bindings/core/v8/V8NPObject.h
|
| diff --git a/Source/bindings/core/v8/V8NPObject.h b/Source/bindings/core/v8/V8NPObject.h
|
| index a0c4423152dc8e1f94a23bd74740804599586464..b72b84cf48d1211a08dfb0910d56eba1d1afb203 100644
|
| --- a/Source/bindings/core/v8/V8NPObject.h
|
| +++ b/Source/bindings/core/v8/V8NPObject.h
|
| @@ -55,7 +55,7 @@ void npObjectInvokeDefaultHandler(const v8::FunctionCallbackInfo<v8::Value>&);
|
| // Get a wrapper for a NPObject.
|
| // If the object is already wrapped, the pre-existing wrapper will be returned. If the object is not wrapped, wrap it, and
|
| // give V8 a weak reference to the wrapper which will cleanup when there are no more JS references to the object.
|
| -v8::Local<v8::Object> createV8ObjectForNPObject(NPObject*, NPObject* root, v8::Isolate*);
|
| +v8::Local<v8::Object> createV8ObjectForNPObject(v8::Isolate*, NPObject*, NPObject* root);
|
|
|
| // Tell V8 to forcibly remove an object.
|
| // This is used at plugin teardown so that the caller can aggressively unload the plugin library. After calling this
|
|
|