Index: content/browser/renderer_host/render_widget_host_view_android.cc |
diff --git a/content/browser/renderer_host/render_widget_host_view_android.cc b/content/browser/renderer_host/render_widget_host_view_android.cc |
index 3ced095e950303c4870ec6f7325b6a381874fcef..674f87a483c1adaecb2bb8117a36efef10a53a5e 100644 |
--- a/content/browser/renderer_host/render_widget_host_view_android.cc |
+++ b/content/browser/renderer_host/render_widget_host_view_android.cc |
@@ -1677,8 +1677,21 @@ void RenderWidgetHostViewAndroid::UnlockMouse() { |
void RenderWidgetHostViewAndroid::SendKeyEvent( |
const NativeWebKeyboardEvent& event) { |
- if (host_) |
- host_->ForwardKeyboardEvent(event); |
+ if (!host_) |
+ return; |
+ |
+ RenderWidgetHostImpl* target_host = host_; |
+ |
+ // If there are multiple widgets on the page (such as when there are |
+ // out-of-process iframes), pick the one that should process this event. |
+ if (host_->delegate()) { |
+ RenderWidgetHostImpl* focused_host = |
+ host_->delegate()->GetFocusedRenderWidgetHost(); |
+ if (focused_host) |
+ target_host = focused_host; |
+ } |
+ |
+ target_host->ForwardKeyboardEvent(event); |
} |
void RenderWidgetHostViewAndroid::SendMouseEvent( |