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.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.h')
-rw-r--r-- | webkit/glue/webframe.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/webframe.h b/webkit/glue/webframe.h index 1789bfb..053c9dc 100644 --- a/webkit/glue/webframe.h +++ b/webkit/glue/webframe.h @@ -368,13 +368,13 @@ class WebFrame { // superset of those accepted by javascript:document.execCommand(). // This method is exposed in order to implement // javascript:layoutTestController.execCommand() - virtual bool ExecuteCoreCommandByName(const std::string& name, + virtual bool ExecuteEditCommandByName(const std::string& name, const std::string& value) = 0; // Checks whether a webkit editor command is currently enabled. This // method is exposed in order to implement // javascript:layoutTestController.isCommandEnabled() - virtual bool IsCoreCommandEnabled(const std::string& name) = 0; + virtual bool IsEditCommandEnabled(const std::string& name) = 0; // Adds a message to the frame's console. virtual void AddMessageToConsole(const WebKit::WebConsoleMessage&) = 0; |