| Index: third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp b/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
|
| index ba6c90bd6896a599af749749d7e1e4d4fdf87c5f..9d9770df3d509b80f2398b9e392af9052fe46b27 100644
|
| --- a/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
|
| @@ -136,6 +136,11 @@ bool WebRemoteFrameImpl::hasVerticalScrollbar() const {
|
| return false;
|
| }
|
|
|
| +void WebRemoteFrameImpl::collapseFrameOwner(bool collapsed) {
|
| + DCHECK(frame()->owner()->isLocal());
|
| + frame()->owner()->setShouldCollapse(collapsed);
|
| +}
|
| +
|
| WebView* WebRemoteFrameImpl::view() const {
|
| if (!frame())
|
| return nullptr;
|
|
|