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