| Index: third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| index c85a3996299042d791b4dd4b2275196bc337b637..a478b6c71a8c5b65ecb4bf8f984fd1d90c691bf7 100644
|
| --- a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| @@ -774,6 +774,11 @@ void WebFrameWidgetImpl::SetRemoteViewportIntersection(
|
| }
|
| }
|
|
|
| +void WebFrameWidgetImpl::SetIsInert(bool inert) {
|
| + DCHECK(local_root_->Parent() && local_root_->Parent()->IsWebRemoteFrame());
|
| + local_root_->GetFrame()->SetIsInert(inert);
|
| +}
|
| +
|
| void WebFrameWidgetImpl::HandleMouseLeave(LocalFrame& main_frame,
|
| const WebMouseEvent& event) {
|
| // FIXME: WebWidget doesn't have the method below.
|
|
|