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

Unified Diff: content/renderer/render_view.h

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.h
===================================================================
--- content/renderer/render_view.h (revision 87397)
+++ content/renderer/render_view.h (working copy)
@@ -309,6 +309,13 @@
// Informs the render view that a PPAPI plugin has gained or lost focus.
void PpapiPluginFocusChanged();
+#if defined(OS_WIN)
+ // Notifies the IME status has been updated by a plug-in. When a render view
+ // receives this message, it updates its IME status and dispatch it to a
+ // browser process.
+ void UpdatePluginIMEStatus(int input_type, const gfx::Rect& caret_rect);
+#endif
+
#if defined(OS_MACOSX)
// Informs the render view that the given plugin has gained or lost focus.
void PluginFocusChanged(bool focused, int plugin_id);

Powered by Google App Engine
This is Rietveld 408576698