diff options
| author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-19 00:09:10 +0000 |
|---|---|---|
| committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-19 00:09:10 +0000 |
| commit | 679f9f3e5f2232697d65d61254b0fb31f7c11d13 (patch) | |
| tree | 54fc9496cff50de44debcc42763ee9383565e8c5 /chrome/test/webdriver/commands/alert_commands.h | |
| parent | 3bb9614bb94ca752dbaba6448caa147e840e2bcd (diff) | |
| download | chromium_src-679f9f3e5f2232697d65d61254b0fb31f7c11d13.zip chromium_src-679f9f3e5f2232697d65d61254b0fb31f7c11d13.tar.gz chromium_src-679f9f3e5f2232697d65d61254b0fb31f7c11d13.tar.bz2 | |
Add OVERRIDE to chrome/test/.
BUG=104314
TEST=no change
Review URL: http://codereview.chromium.org/8558032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110793 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/webdriver/commands/alert_commands.h')
| -rw-r--r-- | chrome/test/webdriver/commands/alert_commands.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/chrome/test/webdriver/commands/alert_commands.h b/chrome/test/webdriver/commands/alert_commands.h index cc5c049..d0c856e2 100644 --- a/chrome/test/webdriver/commands/alert_commands.h +++ b/chrome/test/webdriver/commands/alert_commands.h @@ -25,10 +25,10 @@ class AlertTextCommand : public WebDriverCommand { base::DictionaryValue* parameters); virtual ~AlertTextCommand(); - virtual bool DoesGet(); - virtual bool DoesPost(); - virtual void ExecuteGet(Response* const response); - virtual void ExecutePost(Response* const response); + virtual bool DoesGet() OVERRIDE; + virtual bool DoesPost() OVERRIDE; + virtual void ExecuteGet(Response* const response) OVERRIDE; + virtual void ExecutePost(Response* const response) OVERRIDE; private: DISALLOW_COPY_AND_ASSIGN(AlertTextCommand); @@ -40,8 +40,8 @@ class AcceptAlertCommand : public WebDriverCommand { base::DictionaryValue* parameters); virtual ~AcceptAlertCommand(); - virtual bool DoesPost(); - virtual void ExecutePost(Response* const response); + virtual bool DoesPost() OVERRIDE; + virtual void ExecutePost(Response* const response) OVERRIDE; private: DISALLOW_COPY_AND_ASSIGN(AcceptAlertCommand); @@ -53,8 +53,8 @@ class DismissAlertCommand : public WebDriverCommand { base::DictionaryValue* parameters); virtual ~DismissAlertCommand(); - virtual bool DoesPost(); - virtual void ExecutePost(Response* const response); + virtual bool DoesPost() OVERRIDE; + virtual void ExecutePost(Response* const response) OVERRIDE; private: DISALLOW_COPY_AND_ASSIGN(DismissAlertCommand); |
