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 fef7ff7a621f0f0362efa0d9e2ce52191dee9aff..2fed9ac6dac79ee9fd021eb72b766f67bf7416c2 100644 |
--- a/content/browser/frame_host/cross_process_frame_connector.cc |
+++ b/content/browser/frame_host/cross_process_frame_connector.cc |
@@ -190,6 +190,12 @@ bool CrossProcessFrameConnector::HasFocus() { |
return false; |
} |
+void CrossProcessFrameConnector::NotifyRootViewOfTextInputStateChanged() { |
+ RenderWidgetHostViewBase* root_view = GetRootRenderWidgetHostView(); |
+ if (root_view) |
+ root_view->NotifyTextInputStateChanged(); |
+} |
+ |
void CrossProcessFrameConnector::OnForwardInputEvent( |
const blink::WebInputEvent* event) { |
if (!view_) |