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