| 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 394752bea2214613879c122678028787962bea92..5a05228a26a73dc8847bc1c9683694a8376a6a98 100644
|
| --- a/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
|
| @@ -12,6 +12,7 @@
|
| #include "core/layout/api/LayoutItem.h"
|
| #include "core/layout/api/LayoutPartItem.h"
|
| #include "platform/exported/WrappedResourceRequest.h"
|
| +#include "platform/geometry/IntRect.h"
|
| #include "platform/weborigin/SecurityOrigin.h"
|
| #include "platform/weborigin/SecurityPolicy.h"
|
| #include "public/web/WebRemoteFrameClient.h"
|
| @@ -174,6 +175,11 @@ void RemoteFrameClientImpl::frameRectsChanged(const IntRect& frameRect) {
|
| m_webFrame->client()->frameRectsChanged(frameRect);
|
| }
|
|
|
| +void RemoteFrameClientImpl::updateRemoteViewportIntersection(
|
| + const IntRect& viewportIntersection) {
|
| + m_webFrame->client()->updateRemoteViewportIntersection(viewportIntersection);
|
| +}
|
| +
|
| void RemoteFrameClientImpl::advanceFocus(WebFocusType type,
|
| LocalFrame* source) {
|
| m_webFrame->client()->advanceFocus(type,
|
|
|