| Index: content/browser/renderer_host/render_widget_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_widget_host_impl.cc b/content/browser/renderer_host/render_widget_host_impl.cc
|
| index 0ce169540b3cae2c0e67d865f585d0d48d8763a3..a10f620366291483263a83b237cfaa7e37f957b3 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.cc
|
| @@ -496,6 +496,7 @@ bool RenderWidgetHostImpl::OnMessageReceived(const IPC::Message &msg) {
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_ForwardCompositorProto,
|
| OnForwardCompositorProto)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_SetNeedsBeginFrames, OnSetNeedsBeginFrames)
|
| + IPC_MESSAGE_HANDLER(ViewHostMsg_SetFormTextInputInfo, OnTextInputInfoReply)
|
| IPC_MESSAGE_UNHANDLED(handled = false)
|
| IPC_END_MESSAGE_MAP()
|
|
|
| @@ -1348,6 +1349,14 @@ void RenderWidgetHostImpl::OnSetNeedsBeginFrames(bool needs_begin_frames) {
|
| view_->SetNeedsBeginFrames(needs_begin_frames);
|
| }
|
|
|
| +void RenderWidgetHostImpl::OnTextInputInfoReply(
|
| + int request_id,
|
| + const std::string& text,
|
| + const std::string& placeholder) {
|
| + if (view_)
|
| + view_->OnTextInputInfoReply(request_id, text, placeholder);
|
| +}
|
| +
|
| void RenderWidgetHostImpl::RendererExited(base::TerminationStatus status,
|
| int exit_code) {
|
| if (!renderer_initialized_)
|
|
|