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

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: Incorporated comments from brettw, yzshen, and kochi. 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 e595f20f39f27e5b013d663d26068b14877d23a0..3cb91683bd8678fb10ef6973e3e841e4663d54cc 100644
--- a/content/renderer/render_view.h
+++ b/content/renderer/render_view.h
@@ -307,6 +307,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();
@@ -662,6 +668,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