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

Unified Diff: chrome_frame/chrome_frame_automation.cc

Issue 102763005: Remove the ChromeFrame specific cookie code between the renderer and browser process. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years 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_frame/chrome_frame_automation.h ('k') | chrome_frame/chrome_frame_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/chrome_frame_automation.cc
===================================================================
--- chrome_frame/chrome_frame_automation.cc (revision 240900)
+++ chrome_frame/chrome_frame_automation.cc (working copy)
@@ -985,24 +985,6 @@
return true;
}
break;
-
- case AutomationMsg_GetCookiesFromHost::ID:
- if (ui_thread || (url_fetcher_flags_ &
- PluginUrlRequestManager::COOKIE_REQUEST_THREADSAFE)) {
- AutomationMsg_GetCookiesFromHost::Dispatch(&msg, url_fetcher_, this,
- &PluginUrlRequestManager::GetCookiesFromHost);
- return true;
- }
- break;
-
- case AutomationMsg_SetCookieAsync::ID:
- if (ui_thread || (url_fetcher_flags_ &
- PluginUrlRequestManager::COOKIE_REQUEST_THREADSAFE)) {
- AutomationMsg_SetCookieAsync::Dispatch(&msg, url_fetcher_, this,
- &PluginUrlRequestManager::SetCookiesInHost);
- return true;
- }
- break;
}
PostTask(
@@ -1287,9 +1269,3 @@
automation_server_->Send(new AutomationMsg_RequestEnd(
tab_->handle(), request_id, status));
}
-
-void ChromeFrameAutomationClient::OnCookiesRetrieved(bool success,
- const GURL& url, const std::string& cookie_string, int cookie_id) {
- automation_server_->Send(new AutomationMsg_GetCookiesHostResponse(
- tab_->handle(), success, url, cookie_string, cookie_id));
-}
« no previous file with comments | « chrome_frame/chrome_frame_automation.h ('k') | chrome_frame/chrome_frame_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698