Index: chrome/test/webdriver/automation.h |
diff --git a/chrome/test/webdriver/automation.h b/chrome/test/webdriver/automation.h |
index 4bf8758c69d88b9a2c1cade6e6122d7b4079e9eb..f8998a999138a5e9d5d1f71dc79a9d393972f590 100644 |
--- a/chrome/test/webdriver/automation.h |
+++ b/chrome/test/webdriver/automation.h |
@@ -43,7 +43,14 @@ class Automation : private UITestBase { |
void GoBack(bool* success); |
void Reload(bool* success); |
void GetURL(std::string* url, bool* success); |
+ void GetGURL(GURL* gurl, bool* success); |
kkania
2011/02/08 18:35:22
I don't see this used anywhere. Delete?
Joe
2011/02/09 06:32:10
It is used cookie_commands.cc
On 2011/02/08 18:35
|
void GetTabTitle(std::string* tab_title, bool* success); |
+ void GetCookies(const GURL& gurl, std::string* cookies, bool* success); |
+ void GetCookieByName(const GURL& gurl, const std::string& cookie_name, |
+ std::string* cookie, bool* success); |
+ void DeleteCookie(const GURL& gurl, const std::string& cookie_name, |
+ bool* success); |
+ void SetCookie(const GURL& gurl, const std::string& cookie, bool* success); |
private: |
scoped_refptr<BrowserProxy> browser_; |