| Index: third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp b/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
|
| index 1d35b6c5c1209e772f9256f341ea50db3e351c88..e66609d4f46ed0af4b35e80804570d730281c5dc 100644
|
| --- a/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
|
| @@ -117,14 +117,6 @@ Frame* RemoteFrameClientImpl::lastChild() const
|
| return toCoreFrame(m_webFrame->lastChild());
|
| }
|
|
|
| -bool RemoteFrameClientImpl::willCheckAndDispatchMessageEvent(
|
| - SecurityOrigin* target, MessageEvent* event, LocalFrame* sourceFrame) const
|
| -{
|
| - if (m_webFrame->client())
|
| - m_webFrame->client()->postMessageEvent(WebLocalFrameImpl::fromFrame(sourceFrame), m_webFrame, WebSecurityOrigin(target), WebDOMMessageEvent(event));
|
| - return true;
|
| -}
|
| -
|
| void RemoteFrameClientImpl::frameFocused() const
|
| {
|
| if (m_webFrame->client())
|
| @@ -153,6 +145,13 @@ unsigned RemoteFrameClientImpl::backForwardLength()
|
| return 2;
|
| }
|
|
|
| +void RemoteFrameClientImpl::willCheckAndDispatchMessageEvent(
|
| + MessageEvent* event, PassRefPtr<SecurityOrigin> target, LocalFrame* sourceFrame) const
|
| +{
|
| + if (m_webFrame->client())
|
| + m_webFrame->client()->postMessageEvent(WebLocalFrameImpl::fromFrame(sourceFrame), m_webFrame, WebSecurityOrigin(target), WebDOMMessageEvent(event));
|
| +}
|
| +
|
| // FIXME: Remove this code once we have input routing in the browser
|
| // process. See http://crbug.com/339659.
|
| void RemoteFrameClientImpl::forwardInputEvent(Event* event)
|
|
|