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

Unified Diff: chrome/test/webdriver/commands/set_timeout_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/session_with_id.h ('k') | chrome/test/webdriver/commands/source_command.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/commands/set_timeout_commands.h
diff --git a/chrome/test/webdriver/commands/set_timeout_commands.h b/chrome/test/webdriver/commands/set_timeout_commands.h
index 88f79cb28c2660c6b65088b043538d48534e4a6b..de7a7c13951ff377a436e279ce9dcf0e797087a4 100644
--- a/chrome/test/webdriver/commands/set_timeout_commands.h
+++ b/chrome/test/webdriver/commands/set_timeout_commands.h
@@ -24,8 +24,8 @@ class SetTimeoutCommand : public WebDriverCommand {
const base::DictionaryValue* const parameters);
virtual ~SetTimeoutCommand();
- virtual bool DoesPost();
- virtual void ExecutePost(Response* const response);
+ virtual bool DoesPost() OVERRIDE;
+ virtual void ExecutePost(Response* const response) OVERRIDE;
virtual void SetTimeout(int timeout_ms) = 0;
private:
@@ -38,7 +38,7 @@ class SetAsyncScriptTimeoutCommand : public SetTimeoutCommand {
SetAsyncScriptTimeoutCommand(const std::vector<std::string>& path_segments,
const base::DictionaryValue* const parameters);
virtual ~SetAsyncScriptTimeoutCommand();
- virtual void SetTimeout(int timeout_ms);
+ virtual void SetTimeout(int timeout_ms) OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(SetAsyncScriptTimeoutCommand);
@@ -50,7 +50,7 @@ class ImplicitWaitCommand : public SetTimeoutCommand {
ImplicitWaitCommand(const std::vector<std::string>& path_segments,
const base::DictionaryValue* const parameters);
virtual ~ImplicitWaitCommand();
- virtual void SetTimeout(int timeout_ms);
+ virtual void SetTimeout(int timeout_ms) OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(ImplicitWaitCommand);
« no previous file with comments | « chrome/test/webdriver/commands/session_with_id.h ('k') | chrome/test/webdriver/commands/source_command.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698