| Index: sky/engine/web/ChromeClientImpl.cpp
|
| diff --git a/sky/engine/web/ChromeClientImpl.cpp b/sky/engine/web/ChromeClientImpl.cpp
|
| index 28c3319093f850b7dd5850f82ce449d1385f7383..92d024b690133771b5009b471885295506ffc198 100644
|
| --- a/sky/engine/web/ChromeClientImpl.cpp
|
| +++ b/sky/engine/web/ChromeClientImpl.cpp
|
| @@ -61,7 +61,6 @@
|
| #include "sky/engine/public/web/WebTextDirection.h"
|
| #include "sky/engine/public/web/WebTouchAction.h"
|
| #include "sky/engine/public/web/WebViewClient.h"
|
| -#include "sky/engine/web/WebInputEventConversion.h"
|
| #include "sky/engine/web/WebLocalFrameImpl.h"
|
| #include "sky/engine/web/WebSettingsImpl.h"
|
| #include "sky/engine/web/WebViewImpl.h"
|
| @@ -288,20 +287,4 @@ void ChromeClientImpl::showImeIfNeeded()
|
| m_webView->client()->showImeIfNeeded();
|
| }
|
|
|
| -// FIXME: Remove this code once we have input routing in the browser
|
| -// process. See http://crbug.com/339659.
|
| -void ChromeClientImpl::forwardInputEvent(
|
| - Frame* frame, Event* event)
|
| -{
|
| - WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(toLocalFrame(frame));
|
| -
|
| - // This is only called when we have out-of-process iframes, which
|
| - // need to forward input events across processes.
|
| - // FIXME: Add a check for out-of-process iframes enabled.
|
| - if (event->isKeyboardEvent()) {
|
| - WebKeyboardEventBuilder webEvent(*static_cast<KeyboardEvent*>(event));
|
| - webFrame->client()->forwardInputEvent(&webEvent);
|
| - }
|
| -}
|
| -
|
| } // namespace blink
|
|
|