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

Unified Diff: chrome_frame/chrome_frame_automation.cc

Issue 6055002: Create a message filter for message port messages. This allows a nice cleanu... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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
Index: chrome_frame/chrome_frame_automation.cc
===================================================================
--- chrome_frame/chrome_frame_automation.cc (revision 69724)
+++ chrome_frame/chrome_frame_automation.cc (working copy)
@@ -1103,7 +1103,7 @@
case AutomationMsg_RequestStart::ID:
if (ui_thread || (url_fetcher_flags_ &
PluginUrlRequestManager::START_REQUEST_THREADSAFE)) {
- AutomationMsg_RequestStart::Dispatch(&msg, url_fetcher_,
+ AutomationMsg_RequestStart::Dispatch(&msg, url_fetcher_, this,
&PluginUrlRequestManager::StartUrlRequest);
return true;
}
@@ -1112,7 +1112,7 @@
case AutomationMsg_RequestRead::ID:
if (ui_thread || (url_fetcher_flags_ &
PluginUrlRequestManager::READ_REQUEST_THREADSAFE)) {
- AutomationMsg_RequestRead::Dispatch(&msg, url_fetcher_,
+ AutomationMsg_RequestRead::Dispatch(&msg, url_fetcher_, this,
&PluginUrlRequestManager::ReadUrlRequest);
return true;
}
@@ -1121,7 +1121,7 @@
case AutomationMsg_RequestEnd::ID:
if (ui_thread || (url_fetcher_flags_ &
PluginUrlRequestManager::STOP_REQUEST_THREADSAFE)) {
- AutomationMsg_RequestEnd::Dispatch(&msg, url_fetcher_,
+ AutomationMsg_RequestEnd::Dispatch(&msg, url_fetcher_, this,
&PluginUrlRequestManager::EndUrlRequest);
return true;
}
@@ -1130,7 +1130,7 @@
case AutomationMsg_DownloadRequestInHost::ID:
if (ui_thread || (url_fetcher_flags_ &
PluginUrlRequestManager::DOWNLOAD_REQUEST_THREADSAFE)) {
- AutomationMsg_DownloadRequestInHost::Dispatch(&msg, url_fetcher_,
+ AutomationMsg_DownloadRequestInHost::Dispatch(&msg, url_fetcher_, this,
&PluginUrlRequestManager::DownloadUrlRequestInHost);
return true;
}
@@ -1139,7 +1139,7 @@
case AutomationMsg_GetCookiesFromHost::ID:
if (ui_thread || (url_fetcher_flags_ &
PluginUrlRequestManager::COOKIE_REQUEST_THREADSAFE)) {
- AutomationMsg_GetCookiesFromHost::Dispatch(&msg, url_fetcher_,
+ AutomationMsg_GetCookiesFromHost::Dispatch(&msg, url_fetcher_, this,
&PluginUrlRequestManager::GetCookiesFromHost);
return true;
}
@@ -1148,7 +1148,7 @@
case AutomationMsg_SetCookieAsync::ID:
if (ui_thread || (url_fetcher_flags_ &
PluginUrlRequestManager::COOKIE_REQUEST_THREADSAFE)) {
- AutomationMsg_SetCookieAsync::Dispatch(&msg, url_fetcher_,
+ AutomationMsg_SetCookieAsync::Dispatch(&msg, url_fetcher_, this,
&PluginUrlRequestManager::SetCookiesInHost);
return true;
}

Powered by Google App Engine
This is Rietveld 408576698