Chromium Code Reviews

Unified Diff: chrome/browser/automation/automation_resource_message_filter.cc

Issue 5998006: Clean up Automation and Chrome Frame IPC code. (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.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/browser/automation/automation_resource_message_filter.cc
===================================================================
--- chrome/browser/automation/automation_resource_message_filter.cc (revision 69966)
+++ chrome/browser/automation/automation_resource_message_filter.cc (working copy)
@@ -407,7 +407,7 @@
return false;
}
- return Send(new AutomationMsg_DownloadRequestInHost(0, tab_handle,
+ return Send(new AutomationMsg_DownloadRequestInHost(tab_handle,
automation_request_id));
}
@@ -459,7 +459,7 @@
if (automation_details_iter->second.filter) {
automation_details_iter->second.filter->Send(
new AutomationMsg_GetCookiesFromHost(
- 0, automation_details_iter->second.tab_handle, url,
+ automation_details_iter->second.tab_handle, url,
completion_callback_id));
}
return true;
@@ -530,7 +530,7 @@
if (automation_details_iter->second.filter) {
automation_details_iter->second.filter->Send(
new AutomationMsg_SetCookieAsync(
- 0, automation_details_iter->second.tab_handle, url, cookie_line));
+ automation_details_iter->second.tab_handle, url, cookie_line));
}
return true;
« no previous file with comments | « chrome/browser/automation/automation_provider_win.cc ('k') | chrome/browser/automation/automation_resource_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine