| 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:
|
|
|