Index: content/renderer/render_view.cc |
=================================================================== |
--- content/renderer/render_view.cc (revision 87397) |
+++ content/renderer/render_view.cc (working copy) |
@@ -3996,6 +3996,14 @@ |
} |
} |
+#if defined(OS_WIN) |
+void RenderView::UpdatePluginIMEStatus(int input_type, |
+ const gfx::Rect& caret_rect) { |
+ Send(new ViewHostMsg_ImeUpdateTextInputState(routing_id(), |
+ static_cast<WebKit::WebTextInputType>(input_type), caret_rect)); |
+} |
+#endif |
+ |
#if defined(OS_MACOSX) |
void RenderView::PluginFocusChanged(bool focused, int plugin_id) { |
IPC::Message* msg = new ViewHostMsg_PluginFocusChanged(routing_id(), |