summaryrefslogtreecommitdiffstats
path: root/chrome_frame/urlmon_url_request.h
diff options
context:
space:
mode:
authorananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-24 20:42:51 +0000
committerananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-24 20:42:51 +0000
commit0d282c2e73b39d58ed920177dd53211238dbd211 (patch)
tree82ae5fc3f6a5e8a5a1ff8b34c58a815bc617f787 /chrome_frame/urlmon_url_request.h
parent56235c632f18380a4455b6ea113cd6e2a2df0d69 (diff)
downloadchromium_src-0d282c2e73b39d58ed920177dd53211238dbd211.zip
chromium_src-0d282c2e73b39d58ed920177dd53211238dbd211.tar.gz
chromium_src-0d282c2e73b39d58ed920177dd53211238dbd211.tar.bz2
Fix for the HTTPSGetTest and GetTest net test failures with ChromeFrame. These failures occurred
because of new expectations in these tests which match the server ip address and port being connected to. We need to return that information from ChromeFrame. Fix is to send over the corresponding HostPortPair structure in the AutomationMsg_RequestStarted IPC message. A major part of this CL is basically the groundwork to pass this information over via automation. BUG=none TEST=chrome frame net tests should pass. Review URL: http://codereview.chromium.org/6575027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75942 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/urlmon_url_request.h')
-rw-r--r--chrome_frame/urlmon_url_request.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome_frame/urlmon_url_request.h b/chrome_frame/urlmon_url_request.h
index c16ce24..b5b47e6 100644
--- a/chrome_frame/urlmon_url_request.h
+++ b/chrome_frame/urlmon_url_request.h
@@ -94,7 +94,8 @@ class UrlmonUrlRequestManager
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);
virtual void OnReadComplete(int request_id, const std::string& data);
virtual void OnResponseEnd(int request_id,
const net::URLRequestStatus& status);