Index: chrome/test/webdriver/session.h |
diff --git a/chrome/test/webdriver/session.h b/chrome/test/webdriver/session.h |
index 5284b246d0b8dbdeee54ecc3abda5c24b0d396d9..f66462f4ec7ab6a3250dc49cb1aaa3c590105428 100644 |
--- a/chrome/test/webdriver/session.h |
+++ b/chrome/test/webdriver/session.h |
@@ -47,8 +47,14 @@ class Session { |
bool GoForward(); |
bool GoBack(); |
bool Reload(); |
+ bool GetURL(GURL* url); |
bool GetURL(std::string* url); |
bool GetTabTitle(std::string* tab_title); |
+ bool GetCookies(const GURL& url, std::string* cookies); |
+ bool GetCookieByName(const GURL& url, const std::string& cookie_name, |
+ std::string* cookie); |
+ bool DeleteCookie(const GURL& url, const std::string& cookie_name); |
+ bool SetCookie(const GURL& url, const std::string& cookie); |
inline const std::string& id() const { return id_; } |