diff options
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; |