Chromium Code Reviews| Index: chrome/renderer/render_view.h |
| =================================================================== |
| --- chrome/renderer/render_view.h (revision 71029) |
| +++ chrome/renderer/render_view.h (working copy) |
| @@ -466,6 +466,7 @@ |
| virtual bool isShowingSpellingUI(); |
| virtual void updateSpellingUIWithMisspelledWord( |
| const WebKit::WebString& word); |
| + virtual void continuousSpellCheckingEnabledStateChanged(); |
| virtual bool runFileChooser( |
| const WebKit::WebFileChooserParams& params, |
| WebKit::WebFileChooserCompletion* chooser_completion); |
| @@ -1095,6 +1096,8 @@ |
| // Locates a sub frame with given xpath |
| WebKit::WebFrame* GetChildFrame(const std::wstring& frame_xpath) const; |
| + bool GetFocusedNode(WebKit::WebNode& node) const; |
|
brettw
2011/01/13 05:59:55
Never use refs for out params. This should probabl
sail
2011/01/13 23:38:15
Done.
|
| + |
| DOMUIBindings* GetDOMUIBindings(); |
| ExternalHostBindings* GetExternalHostBindings(); |
| @@ -1151,6 +1154,8 @@ |
| // If |url| is empty, show |fallback_url|. |
| void UpdateTargetURL(const GURL& url, const GURL& fallback_url); |
| + void UpdateToggleSpellCheckCommandState(); |
|
brettw
2011/01/13 05:59:55
Comment?
|
| + |
| // Helper to add an error message to the root frame's console. |
| void AddErrorToRootConsole(const string16& message); |