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); |
} |