| Index: third_party/WebKit/Source/core/frame/DOMWindow.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/DOMWindow.cpp b/third_party/WebKit/Source/core/frame/DOMWindow.cpp
|
| index 7ac7aebd666cdb060aa2501ce510d9d3fd8f6fa8..a71bbb80fc98065a5beb09b781c74757a4cd1a28 100644
|
| --- a/third_party/WebKit/Source/core/frame/DOMWindow.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/DOMWindow.cpp
|
| @@ -214,7 +214,7 @@ void DOMWindow::postMessage(PassRefPtr<SerializedScriptValue> message, const Mes
|
| else if (MixedContentChecker::isMixedContent(frame()->securityContext()->getSecurityOrigin(), sourceDocument->url()))
|
| UseCounter::count(frame(), UseCounter::PostMessageFromInsecureToSecure);
|
|
|
| - RefPtrWillBeRawPtr<MessageEvent> event = MessageEvent::create(channels.release(), message, sourceOrigin, String(), source, sourceSuborigin);
|
| + RawPtr<MessageEvent> event = MessageEvent::create(channels.release(), message, sourceOrigin, String(), source, sourceSuborigin);
|
| // Give the embedder a chance to intercept this postMessage. If the
|
| // target is a remote frame, the message will be forwarded through the
|
| // browser process.
|
|
|