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

Unified Diff: chrome/test/webdriver/commands/alert_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/ui/ui_test_suite.h ('k') | chrome/test/webdriver/commands/appcache_status_command.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/commands/alert_commands.h
diff --git a/chrome/test/webdriver/commands/alert_commands.h b/chrome/test/webdriver/commands/alert_commands.h
index cc5c049fa27321d68cda3eb1537c210ccc73c157..d0c856e2e7027583f639e741a2ede7cfc0160813 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);
« no previous file with comments | « chrome/test/ui/ui_test_suite.h ('k') | chrome/test/webdriver/commands/appcache_status_command.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698