diff options
Diffstat (limited to 'third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp')
-rw-r--r-- | third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp b/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp index 9250810..fde5147 100644 --- a/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp +++ b/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp @@ -188,4 +188,9 @@ void RemoteFrameClientImpl::frameRectsChanged(const IntRect& frameRect) m_webFrame->client()->frameRectsChanged(frameRect); } +void RemoteFrameClientImpl::advanceFocus(WebFocusType type, LocalFrame* source) +{ + m_webFrame->client()->advanceFocus(type, WebLocalFrameImpl::fromFrame(source)); +} + } // namespace blink |