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/session_with_id.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/session_with_id.h')
| -rw-r--r-- | chrome/test/webdriver/commands/session_with_id.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/test/webdriver/commands/session_with_id.h b/chrome/test/webdriver/commands/session_with_id.h index e634c65..9848a4b 100644 --- a/chrome/test/webdriver/commands/session_with_id.h +++ b/chrome/test/webdriver/commands/session_with_id.h @@ -28,11 +28,11 @@ class SessionWithID : public WebDriverCommand { const DictionaryValue* const parameters); virtual ~SessionWithID(); - virtual bool DoesGet(); - virtual bool DoesDelete(); + virtual bool DoesGet() OVERRIDE; + virtual bool DoesDelete() OVERRIDE; - virtual void ExecuteGet(Response* const response); - virtual void ExecuteDelete(Response* const response); + virtual void ExecuteGet(Response* const response) OVERRIDE; + virtual void ExecuteDelete(Response* const response) OVERRIDE; private: DISALLOW_COPY_AND_ASSIGN(SessionWithID); |
