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

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

Issue 6532008: Fix chromium-style compile error that got in the tree since yesterday. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes for Feb 17th Created 9 years, 10 months 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/common/render_messages_params.cc ('k') | chrome/test/webdriver/commands/cookie_commands.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 a040185f382a3343e2eb7d67d5c4ac6d5cf92e26..9a5254476aabaad5c7fcbb71b804d1fb127f9408 100644
--- a/chrome/test/webdriver/commands/cookie_commands.h
+++ b/chrome/test/webdriver/commands/cookie_commands.h
@@ -25,15 +25,14 @@ class Response;
class CookieCommand : public WebDriverCommand {
public:
CookieCommand(const std::vector<std::string>& path_segments,
- const DictionaryValue* const parameters)
- : WebDriverCommand(path_segments, parameters) {}
- virtual ~CookieCommand() {}
+ const DictionaryValue* const parameters);
+ virtual ~CookieCommand();
virtual bool Init(Response* const response);
- virtual bool DoesDelete() { return true; }
- virtual bool DoesGet() { return true; }
- virtual bool DoesPost() { return true; }
+ virtual bool DoesDelete();
+ virtual bool DoesGet();
+ virtual bool DoesPost();
virtual void ExecuteDelete(Response* const response);
virtual void ExecuteGet(Response* const response);
@@ -51,15 +50,14 @@ class CookieCommand : public WebDriverCommand {
class NamedCookieCommand : public WebDriverCommand {
public:
NamedCookieCommand(const std::vector<std::string>& path_segments,
- const DictionaryValue* const parameters)
- : WebDriverCommand(path_segments, parameters) {}
- virtual ~NamedCookieCommand() {}
+ const DictionaryValue* const parameters);
+ virtual ~NamedCookieCommand();
virtual bool Init(Response* const response);
protected:
- virtual bool DoesDelete() { return true; }
- virtual bool DoesGet() { return true; }
+ virtual bool DoesDelete();
+ virtual bool DoesGet();
virtual void ExecuteDelete(Response* const response);
virtual void ExecuteGet(Response* const response);
« no previous file with comments | « chrome/common/render_messages_params.cc ('k') | chrome/test/webdriver/commands/cookie_commands.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698