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

Unified Diff: chrome/test/automation/tab_proxy.cc

Issue 10804038: Convert cookie and download automation commands to the JSON interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 5 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/automation/tab_proxy.h ('k') | chrome/test/pyautolib/pyauto.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/automation/tab_proxy.cc
diff --git a/chrome/test/automation/tab_proxy.cc b/chrome/test/automation/tab_proxy.cc
index e8a063a97a91470f0abd15460d021365704f4322..b00a84eb49d6fc933247735d8c0c4b605fc06c7a 100644
--- a/chrome/test/automation/tab_proxy.cc
+++ b/chrome/test/automation/tab_proxy.cc
@@ -275,21 +275,6 @@ bool TabProxy::GetCookieByName(const GURL& url,
return true;
}
-bool TabProxy::SetCookie(const GURL& url, const std::string& value) {
- int response_value = 0;
- return sender_->Send(new AutomationMsg_SetCookie(url, value, handle_,
- &response_value));
-}
-
-bool TabProxy::GetDownloadDirectory(FilePath* directory) {
- DCHECK(directory);
- if (!is_valid())
- return false;
-
- return sender_->Send(new AutomationMsg_DownloadDirectory(handle_,
- directory));
-}
-
bool TabProxy::Close() {
return Close(false);
}
« no previous file with comments | « chrome/test/automation/tab_proxy.h ('k') | chrome/test/pyautolib/pyauto.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698