| Index: Source/bindings/core/v8/custom/V8MessageEventCustom.cpp
|
| diff --git a/Source/bindings/core/v8/custom/V8MessageEventCustom.cpp b/Source/bindings/core/v8/custom/V8MessageEventCustom.cpp
|
| index 5b718c8693f445d18d15669f6b450e6e2afd877a..2e19b5650fcba20949ee081ca7949f1c57fe9bc6 100644
|
| --- a/Source/bindings/core/v8/custom/V8MessageEventCustom.cpp
|
| +++ b/Source/bindings/core/v8/custom/V8MessageEventCustom.cpp
|
| @@ -112,7 +112,7 @@ void V8MessageEvent::initMessageEventMethodCustom(const v8::FunctionCallbackInfo
|
| v8::Handle<v8::Value> dataArg = info[3];
|
| TOSTRING_VOID(V8StringResource<>, originArg, info[4]);
|
| TOSTRING_VOID(V8StringResource<>, lastEventIdArg, info[5]);
|
| - DOMWindow* sourceArg = toDOMWindow(info[6], info.GetIsolate());
|
| + DOMWindow* sourceArg = toDOMWindow(info.GetIsolate(), info[6]);
|
| OwnPtrWillBeRawPtr<MessagePortArray> portArray = nullptr;
|
| const int portArrayIndex = 7;
|
| if (!isUndefinedOrNull(info[portArrayIndex])) {
|
|
|