diff options
Diffstat (limited to 'chrome_frame/chrome_frame_automation.cc')
-rw-r--r-- | chrome_frame/chrome_frame_automation.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome_frame/chrome_frame_automation.cc b/chrome_frame/chrome_frame_automation.cc index 81eecee..9b397d9 100644 --- a/chrome_frame/chrome_frame_automation.cc +++ b/chrome_frame/chrome_frame_automation.cc @@ -1439,14 +1439,15 @@ void ChromeFrameAutomationClient::OnUnload(bool* should_unload) { void ChromeFrameAutomationClient::OnResponseStarted(int request_id, const char* mime_type, const char* headers, int size, base::Time last_modified, const std::string& redirect_url, - int redirect_status) { + int redirect_status, const net::HostPortPair& socket_address) { const AutomationURLResponse response( mime_type, headers ? headers : "", size, last_modified, redirect_url, - redirect_status); + redirect_status, + socket_address); automation_server_->Send(new AutomationMsg_RequestStarted( tab_->handle(), request_id, response)); |