| Index: Source/bindings/core/v8/custom/V8HTMLPlugInElementCustom.cpp
|
| diff --git a/Source/bindings/core/v8/custom/V8HTMLPlugInElementCustom.cpp b/Source/bindings/core/v8/custom/V8HTMLPlugInElementCustom.cpp
|
| index b09929dbbb30b934781535eeea4a5b3bb3b3ecdf..cb0047993ee33da59bf36233cc4689b8c3d2c7cc 100644
|
| --- a/Source/bindings/core/v8/custom/V8HTMLPlugInElementCustom.cpp
|
| +++ b/Source/bindings/core/v8/custom/V8HTMLPlugInElementCustom.cpp
|
| @@ -200,7 +200,7 @@ void invokeOnScriptableObject(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| if (instance.IsEmpty())
|
| return;
|
|
|
| - WTF::OwnPtr<v8::Handle<v8::Value>[] > arguments = adoptArrayPtr(new v8::Handle<v8::Value>[info.Length()]);
|
| + WTF::OwnPtr<v8::Local<v8::Value>[] > arguments = adoptArrayPtr(new v8::Local<v8::Value>[info.Length()]);
|
| for (int i = 0; i < info.Length(); ++i)
|
| arguments[i] = info[i];
|
|
|
|
|