| Index: Source/bindings/v8/V8NPObject.cpp
|
| diff --git a/Source/bindings/v8/V8NPObject.cpp b/Source/bindings/v8/V8NPObject.cpp
|
| index aa96fd0e4e3cb36158b2039666f032dc1427689b..ddf276154b33f47b72cb527b5f569aa288101d85 100644
|
| --- a/Source/bindings/v8/V8NPObject.cpp
|
| +++ b/Source/bindings/v8/V8NPObject.cpp
|
| @@ -82,10 +82,11 @@ static void npObjectInvokeImpl(const v8::FunctionCallbackInfo<v8::Value>& info,
|
| element = V8HTMLEmbedElement::toNative(info.Holder());
|
| else
|
| element = V8HTMLObjectElement::toNative(info.Holder());
|
| - if (RefPtr<SharedPersistent<v8::Object> > wrapper = element->pluginWrapper()) {
|
| + ScriptValue wrapper = element->pluginWrapper();
|
| + if (!wrapper.hasNoValue()) {
|
| v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
| v8::HandleScope handleScope(isolate);
|
| - npObject = v8ObjectToNPObject(wrapper->newLocal(isolate));
|
| + npObject = v8ObjectToNPObject(v8::Handle<v8::Object>::Cast(wrapper.v8Value()));
|
| } else
|
| npObject = 0;
|
| } else {
|
|
|