diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-07 17:34:08 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-07 17:34:08 +0000 |
commit | a50563969a36701077cb226ff81c9a66230bfae9 (patch) | |
tree | 3395df6c29a0ec0a5befc30b061efa7e4a42615c /content/shell | |
parent | 5ffdfc32d3aca9440da5b8e214323db1ec6f7042 (diff) | |
download | chromium_src-a50563969a36701077cb226ff81c9a66230bfae9.zip chromium_src-a50563969a36701077cb226ff81c9a66230bfae9.tar.gz chromium_src-a50563969a36701077cb226ff81c9a66230bfae9.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/11366131
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166461 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. |