| Index: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| index 5fc1bbc4fc9b6de45ae932fc941c6ad1895130bd..479a273ffe86d8c43d95ce032c99fff00dfb6ad3 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -630,6 +630,11 @@ bool WebLocalFrameImpl::hasVerticalScrollbar() const {
|
| return frame() && frame()->view() && frame()->view()->verticalScrollbar();
|
| }
|
|
|
| +void WebLocalFrameImpl::collapseFrameOwner(bool collapsed) {
|
| + DCHECK(frame()->owner()->isLocal());
|
| + frame()->owner()->setShouldCollapse(collapsed);
|
| +}
|
| +
|
| WebView* WebLocalFrameImpl::view() const {
|
| return viewImpl();
|
| }
|
|
|