diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-07 22:23:28 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-07 22:23:28 +0000 |
commit | 0c3ec6f308d635090e2d3c68798313f764153888 (patch) | |
tree | 43862c767d72437f5eb05b8c42ded0157c1f4a5c /content/shell | |
parent | 2f4c21d1fb3fd6cb7eeec0a69b95970dcb7f3180 (diff) | |
download | chromium_src-0c3ec6f308d635090e2d3c68798313f764153888.zip chromium_src-0c3ec6f308d635090e2d3c68798313f764153888.tar.gz chromium_src-0c3ec6f308d635090e2d3c68798313f764153888.tar.bz2 |
[content shell] remove OVERRIDE from WebTestDelegate implementation
This makes two-sided patches to the TestRunner library's API easier
BUG=111316
Review URL: https://chromiumcodereview.appspot.com/11293154
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166532 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/shell')
-rw-r--r-- | content/shell/webkit_test_runner.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/content/shell/webkit_test_runner.h b/content/shell/webkit_test_runner.h index ab13ceb..1e6c298 100644 --- a/content/shell/webkit_test_runner.h +++ b/content/shell/webkit_test_runner.h @@ -28,24 +28,24 @@ class WebKitTestRunner : public RenderViewObserver, const WebKit::WebContextMenuData& data) OVERRIDE; // WebTestDelegate implementation. - virtual void clearContextMenuData() OVERRIDE; - virtual void clearEditCommand() OVERRIDE; + virtual void clearContextMenuData(); + virtual void clearEditCommand(); virtual void fillSpellingSuggestionList( const WebKit::WebString& word, - WebKit::WebVector<WebKit::WebString>* suggestions) OVERRIDE; + WebKit::WebVector<WebKit::WebString>* suggestions); virtual void setEditCommand(const std::string& name, - const std::string& value) OVERRIDE; - virtual WebKit::WebContextMenuData* lastContextMenuData() const OVERRIDE; - virtual void setGamepadData(const WebKit::WebGamepads& gamepads) OVERRIDE; - virtual void printMessage(const std::string& message) OVERRIDE; - virtual void postTask(WebTestRunner::WebTask* task) OVERRIDE; + const std::string& value); + virtual WebKit::WebContextMenuData* lastContextMenuData() const; + virtual void setGamepadData(const WebKit::WebGamepads& gamepads); + virtual void printMessage(const std::string& message); + virtual void postTask(WebTestRunner::WebTask* task); virtual void postDelayedTask(WebTestRunner::WebTask* task, - long long ms) OVERRIDE; + long long ms); virtual WebKit::WebString registerIsolatedFileSystem( - const WebKit::WebVector<WebKit::WebString>& absolute_filenames) OVERRIDE; - virtual long long getCurrentTimeInMillisecond() OVERRIDE; + const WebKit::WebVector<WebKit::WebString>& absolute_filenames); + virtual long long getCurrentTimeInMillisecond(); virtual WebKit::WebString getAbsoluteWebStringFromUTF8Path( - const std::string& utf8_path) OVERRIDE; + const std::string& utf8_path); private: // Message handlers. |