| 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 1520ff5c1370becdc77471eba821be9dd72a6fe3..10c45df7ae1fb17542f0a8032af5c6f0db165e89 100644
|
| --- a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| @@ -873,13 +873,6 @@ WebInputEventResult WebFrameWidgetImpl::handleKeyEvent(
|
| m_suppressNextKeypressEvent = false;
|
|
|
| Frame* focusedFrame = focusedCoreFrame();
|
| - if (focusedFrame && focusedFrame->isRemoteFrame()) {
|
| - WebRemoteFrameImpl* webFrame =
|
| - WebRemoteFrameImpl::fromFrame(*toRemoteFrame(focusedFrame));
|
| - webFrame->client()->forwardInputEvent(&event);
|
| - return WebInputEventResult::HandledSystem;
|
| - }
|
| -
|
| if (!focusedFrame || !focusedFrame->isLocalFrame())
|
| return WebInputEventResult::NotHandled;
|
|
|
|
|