| Index: content/browser/frame_host/cross_process_frame_connector.cc
|
| diff --git a/content/browser/frame_host/cross_process_frame_connector.cc b/content/browser/frame_host/cross_process_frame_connector.cc
|
| index 3df81a6d914e44e17cd04d0a87e2f05cf6b977a9..16d31fc1733f0c64ef231697c9abb7309c845ca7 100644
|
| --- a/content/browser/frame_host/cross_process_frame_connector.cc
|
| +++ b/content/browser/frame_host/cross_process_frame_connector.cc
|
| @@ -156,6 +156,13 @@ void CrossProcessFrameConnector::FocusRootView() {
|
| root_view->Focus();
|
| }
|
|
|
| +bool CrossProcessFrameConnector::LockMouse() {
|
| + RenderWidgetHostViewBase* root_view = GetRootRenderWidgetHostView();
|
| + if (root_view)
|
| + return root_view->LockMouse();
|
| + return false;
|
| +}
|
| +
|
| void CrossProcessFrameConnector::OnForwardInputEvent(
|
| const blink::WebInputEvent* event) {
|
| if (!view_)
|
|
|