Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(152)

Unified Diff: chrome/test/webdriver/commands/target_locator_commands.h

Issue 8558032: Add OVERRIDE to chrome/test/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/webdriver/commands/source_command.h ('k') | chrome/test/webdriver/commands/title_command.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/commands/target_locator_commands.h
diff --git a/chrome/test/webdriver/commands/target_locator_commands.h b/chrome/test/webdriver/commands/target_locator_commands.h
index f56d8712458a6d14237a3dc8900de1fb405b2844..fe78a904581ae8b05ab71b4433801694bc67660c 100644
--- a/chrome/test/webdriver/commands/target_locator_commands.h
+++ b/chrome/test/webdriver/commands/target_locator_commands.h
@@ -27,8 +27,8 @@ class WindowHandleCommand : public WebDriverCommand {
base::DictionaryValue* parameters);
virtual ~WindowHandleCommand();
- virtual bool DoesGet();
- virtual void ExecuteGet(Response* const response);
+ virtual bool DoesGet() OVERRIDE;
+ virtual void ExecuteGet(Response* const response) OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(WindowHandleCommand);
@@ -42,8 +42,8 @@ class WindowHandlesCommand : public WebDriverCommand {
base::DictionaryValue* parameters);
virtual ~WindowHandlesCommand();
- virtual bool DoesGet();
- virtual void ExecuteGet(Response* const response);
+ virtual bool DoesGet() OVERRIDE;
+ virtual void ExecuteGet(Response* const response) OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(WindowHandlesCommand);
@@ -58,10 +58,10 @@ class WindowCommand : public WebDriverCommand {
base::DictionaryValue* parameters);
virtual ~WindowCommand();
- virtual bool DoesPost();
- virtual bool DoesDelete();
- virtual void ExecutePost(Response* const response);
- virtual void ExecuteDelete(Response* const response);
+ virtual bool DoesPost() OVERRIDE;
+ virtual bool DoesDelete() OVERRIDE;
+ virtual void ExecutePost(Response* const response) OVERRIDE;
+ virtual void ExecuteDelete(Response* const response) OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(WindowCommand);
@@ -75,8 +75,8 @@ class SwitchFrameCommand : public WebDriverCommand {
base::DictionaryValue* parameters);
virtual ~SwitchFrameCommand();
- virtual bool DoesPost();
- virtual void ExecutePost(Response* const response);
+ virtual bool DoesPost() OVERRIDE;
+ virtual void ExecutePost(Response* const response) OVERRIDE;
private:
bool GetWebElementParameter(const std::string& key, ElementId* out) const;
@@ -91,8 +91,8 @@ class ActiveElementCommand : public WebDriverCommand {
base::DictionaryValue* parameters);
virtual ~ActiveElementCommand();
- 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(ActiveElementCommand);
« no previous file with comments | « chrome/test/webdriver/commands/source_command.h ('k') | chrome/test/webdriver/commands/title_command.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698