| 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 0a8b4e099186cb9777f4d2da6a748340d910ff17..2dd42ddd496727a10c357837480c3f8b74b7a314 100644
|
| --- a/content/browser/frame_host/cross_process_frame_connector.cc
|
| +++ b/content/browser/frame_host/cross_process_frame_connector.cc
|
| @@ -194,6 +194,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_)
|
|
|