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

Unified Diff: content/renderer/render_view.h

Issue 8073021: Implement Pepper IME API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge trunk. Created 9 years, 2 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
diff --git a/content/renderer/render_view.h b/content/renderer/render_view.h
index 536f0ff0aa9b9bf99d050f038e8f3a852f2d3d5c..f512214d2868db167ef6dedd7a6824133004ad4b 100644
--- a/content/renderer/render_view.h
+++ b/content/renderer/render_view.h
@@ -306,6 +306,12 @@ class RenderView : public RenderWidget,
// Informs the render view that a PPAPI plugin has gained or lost focus.
void PpapiPluginFocusChanged();
+ // Informs the render view that a PPAPI plugin has changed text input status.
+ void PpapiPluginTextInputTypeChanged();
+
+ // Cancels current composition.
+ void PpapiPluginCancelComposition();
+
// Request updated policy regarding firewall NAT traversal being enabled.
void RequestRemoteAccessClientFirewallTraversal();
@@ -661,6 +667,7 @@ class RenderView : public RenderWidget,
int selection_end) OVERRIDE;
virtual void OnImeConfirmComposition(const string16& text) OVERRIDE;
virtual ui::TextInputType GetTextInputType() OVERRIDE;
+ virtual gfx::Rect GetCaretBounds() OVERRIDE;
virtual bool CanComposeInline() OVERRIDE;
private:

Powered by Google App Engine
This is Rietveld 408576698