Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Unified Diff: content/renderer/render_view.cc

Issue 7082034: Send IME events to windowless plug-ins (Chromium side) (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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(),

Powered by Google App Engine
This is Rietveld 408576698