Chromium Code Reviews| Index: chrome/renderer/render_view.h |
| =================================================================== |
| --- chrome/renderer/render_view.h (revision 70404) |
| +++ chrome/renderer/render_view.h (working copy) |
| @@ -444,6 +444,7 @@ |
| virtual bool isShowingSpellingUI(); |
| virtual void updateSpellingUIWithMisspelledWord( |
| const WebKit::WebString& word); |
| + virtual void continuousSpellCheckingEnabledStateChanged(); |
|
brettw
2011/01/09 00:06:06
What do you key off of in WebKit to call this func
sail
2011/01/11 18:45:51
Currently I'm only calling this in EditorClientImp
|
| virtual bool runFileChooser( |
| const WebKit::WebFileChooserParams& params, |
| WebKit::WebFileChooserCompletion* chooser_completion); |
| @@ -1082,6 +1083,8 @@ |
| // Locates a sub frame with given xpath |
| WebKit::WebFrame* GetChildFrame(const std::wstring& frame_xpath) const; |
| + bool GetFocusedNode(WebKit::WebNode& node) const; |
| + |
| DOMUIBindings* GetDOMUIBindings(); |
| ExternalHostBindings* GetExternalHostBindings(); |
| @@ -1138,6 +1141,8 @@ |
| // If |url| is empty, show |fallback_url|. |
| void UpdateTargetURL(const GURL& url, const GURL& fallback_url); |
| + void UpdateToggleSpellCheckCommandState(); |
| + |
| // Helper to add an error message to the root frame's console. |
| void AddErrorToRootConsole(const string16& message); |