diff options
author | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-23 20:58:15 +0000 |
---|---|---|
committer | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-23 20:58:15 +0000 |
commit | 4b59ae60479a8766e4d0d8a9a8ddd9e32aa84e41 (patch) | |
tree | cbf27b5d434d9f0cd7ccf4e9f69ef7a3c413c67f /webkit/glue/webframe_impl.h | |
parent | cc2ae59c5f959e973b0122081a1e54b3921859ef (diff) | |
download | chromium_src-4b59ae60479a8766e4d0d8a9a8ddd9e32aa84e41.zip chromium_src-4b59ae60479a8766e4d0d8a9a8ddd9e32aa84e41.tar.gz chromium_src-4b59ae60479a8766e4d0d8a9a8ddd9e32aa84e41.tar.bz2 |
Some cleanup around WebCore EditCommands:
Renamed CoreCommand -> EditCommand
Renamed the ViewMsg_HandleExecuteEditCommand IPC message to ViewMsg_ExecuteEditCommand
Review URL: http://codereview.chromium.org/147034
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19055 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webframe_impl.h')
-rw-r--r-- | webkit/glue/webframe_impl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/webframe_impl.h b/webkit/glue/webframe_impl.h index 6db3aa0..dfce74a 100644 --- a/webkit/glue/webframe_impl.h +++ b/webkit/glue/webframe_impl.h @@ -166,9 +166,9 @@ class WebFrameImpl : public WebFrame, public base::RefCounted<WebFrameImpl> { virtual WebTextInput* GetTextInput(); - virtual bool ExecuteCoreCommandByName(const std::string& name, + virtual bool ExecuteEditCommandByName(const std::string& name, const std::string& value); - virtual bool IsCoreCommandEnabled(const std::string& name); + virtual bool IsEditCommandEnabled(const std::string& name); virtual void AddMessageToConsole(const WebKit::WebConsoleMessage&); |