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

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

Issue 6705004: Return the full cookie details in TestingAutomationProvider and pass around (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 years, 9 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/test/webdriver/automation.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 9a5254476aabaad5c7fcbb71b804d1fb127f9408..ab0fbb5f968db9cc06bed0cef914c259ca1e930a 100644
--- a/chrome/test/webdriver/commands/cookie_commands.h
+++ b/chrome/test/webdriver/commands/cookie_commands.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -40,6 +40,7 @@ class CookieCommand : public WebDriverCommand {
private:
GURL current_url_;
+ bool uses_new_interface_;
DISALLOW_COPY_AND_ASSIGN(CookieCommand);
};
@@ -57,14 +58,13 @@ class NamedCookieCommand : public WebDriverCommand {
protected:
virtual bool DoesDelete();
- virtual bool DoesGet();
virtual void ExecuteDelete(Response* const response);
- virtual void ExecuteGet(Response* const response);
private:
GURL current_url_;
std::string cookie_name_;
+ bool uses_new_interface_;
DISALLOW_COPY_AND_ASSIGN(NamedCookieCommand);
};
@@ -72,4 +72,3 @@ class NamedCookieCommand : public WebDriverCommand {
} // namespace webdriver
#endif // CHROME_TEST_WEBDRIVER_COMMANDS_COOKIE_COMMANDS_H_
-
« no previous file with comments | « chrome/test/webdriver/automation.cc ('k') | chrome/test/webdriver/commands/cookie_commands.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698