| Index: Source/web/WebBindings.cpp
|
| diff --git a/Source/web/WebBindings.cpp b/Source/web/WebBindings.cpp
|
| index 2c9158fc408358fb4545441766ce477235c98eeb..e65c3234b467423be3905dd6fac26e81ff86c864 100644
|
| --- a/Source/web/WebBindings.cpp
|
| +++ b/Source/web/WebBindings.cpp
|
| @@ -323,7 +323,7 @@ static NPObject* makeIntArrayImpl(const WebVector<int>& data, v8::Isolate* isola
|
| result->Set(i, v8::Number::New(isolate, data[i]));
|
|
|
| LocalDOMWindow* window = currentDOMWindow(isolate);
|
| - return npCreateV8ScriptObject(0, result, window, isolate);
|
| + return npCreateV8ScriptObject(isolate, 0, result, window);
|
| }
|
|
|
| static NPObject* makeStringArrayImpl(const WebVector<WebString>& data, v8::Isolate* isolate)
|
| @@ -334,7 +334,7 @@ static NPObject* makeStringArrayImpl(const WebVector<WebString>& data, v8::Isola
|
| result->Set(i, v8String(isolate, data[i]));
|
|
|
| LocalDOMWindow* window = currentDOMWindow(isolate);
|
| - return npCreateV8ScriptObject(0, result, window, isolate);
|
| + return npCreateV8ScriptObject(isolate, 0, result, window);
|
| }
|
|
|
| bool WebBindings::getRange(NPObject* range, WebRange* webRange)
|
|
|