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

Unified Diff: chrome/test/webdriver/commands/cookie_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
Index: chrome/test/webdriver/commands/cookie_commands.h
diff --git a/chrome/test/webdriver/commands/cookie_commands.h b/chrome/test/webdriver/commands/cookie_commands.h
index 7c778aed1931322ed221c229502c9bb7aa7d9f0a..ac5aefeb2b140ba262eb261162613708976aafe6 100644
--- a/chrome/test/webdriver/commands/cookie_commands.h
+++ b/chrome/test/webdriver/commands/cookie_commands.h
@@ -30,13 +30,13 @@ class CookieCommand : public WebDriverCommand {
const base::DictionaryValue* const parameters);
virtual ~CookieCommand();
- virtual bool DoesDelete();
- virtual bool DoesGet();
- virtual bool DoesPost();
+ virtual bool DoesDelete() OVERRIDE;
+ virtual bool DoesGet() OVERRIDE;
+ virtual bool DoesPost() OVERRIDE;
- virtual void ExecuteDelete(Response* const response);
- virtual void ExecuteGet(Response* const response);
- virtual void ExecutePost(Response* const response);
+ virtual void ExecuteDelete(Response* const response) OVERRIDE;
+ virtual void ExecuteGet(Response* const response) OVERRIDE;
+ virtual void ExecutePost(Response* const response) OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(CookieCommand);
@@ -51,11 +51,11 @@ class NamedCookieCommand : public WebDriverCommand {
const base::DictionaryValue* const parameters);
virtual ~NamedCookieCommand();
- virtual bool Init(Response* const response);
+ virtual bool Init(Response* const response) OVERRIDE;
- virtual bool DoesDelete();
+ virtual bool DoesDelete() OVERRIDE;
- virtual void ExecuteDelete(Response* const response);
+ virtual void ExecuteDelete(Response* const response) OVERRIDE;
private:
std::string cookie_name_;
« no previous file with comments | « chrome/test/webdriver/commands/browser_connection_commands.h ('k') | chrome/test/webdriver/commands/create_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698