diff options
Diffstat (limited to 'chrome/browser/net')
4 files changed, 5 insertions, 4 deletions
diff --git a/chrome/browser/net/chrome_fraudulent_certificate_reporter.cc b/chrome/browser/net/chrome_fraudulent_certificate_reporter.cc index 505e54f..efea4b5 100644 --- a/chrome/browser/net/chrome_fraudulent_certificate_reporter.cc +++ b/chrome/browser/net/chrome_fraudulent_certificate_reporter.cc @@ -60,7 +60,7 @@ scoped_ptr<net::URLRequest> ChromeFraudulentCertificateReporter::CreateURLRequest( net::URLRequestContext* context) { scoped_ptr<net::URLRequest> request = - context->CreateRequest(upload_url_, net::DEFAULT_PRIORITY, this); + context->CreateRequest(upload_url_, net::DEFAULT_PRIORITY, this, NULL); request->SetLoadFlags(net::LOAD_DO_NOT_SEND_COOKIES | net::LOAD_DO_NOT_SAVE_COOKIES); return request.Pass(); diff --git a/chrome/browser/net/connection_tester.cc b/chrome/browser/net/connection_tester.cc index eca301c..5672d45 100644 --- a/chrome/browser/net/connection_tester.cc +++ b/chrome/browser/net/connection_tester.cc @@ -412,7 +412,7 @@ void ConnectionTester::TestRunner::ProxyConfigServiceCreated( } // Fetch a request using the experimental context. request_ = request_context_->CreateRequest( - experiment.url, net::DEFAULT_PRIORITY, this); + experiment.url, net::DEFAULT_PRIORITY, this, NULL); request_->Start(); } diff --git a/chrome/browser/net/http_pipelining_compatibility_client.cc b/chrome/browser/net/http_pipelining_compatibility_client.cc index 407211b..3f2ee54 100644 --- a/chrome/browser/net/http_pipelining_compatibility_client.cc +++ b/chrome/browser/net/http_pipelining_compatibility_client.cc @@ -93,7 +93,8 @@ Request::Request(int request_id, url_request_(url_request_context->CreateRequest(GURL(base_url + info.filename), net::DEFAULT_PRIORITY, - this)), + this, + NULL)), info_(info), response_code_(0) { url_request_->SetLoadFlags(net::LOAD_BYPASS_CACHE | diff --git a/chrome/browser/net/spdyproxy/proxy_advisor.cc b/chrome/browser/net/spdyproxy/proxy_advisor.cc index 9d325de..877d409 100644 --- a/chrome/browser/net/spdyproxy/proxy_advisor.cc +++ b/chrome/browser/net/spdyproxy/proxy_advisor.cc @@ -119,7 +119,7 @@ void ProxyAdvisor::Advise( std::string endpoint = DataReductionProxySettings::GetDataReductionProxyOrigin() + "preconnect"; scoped_ptr<net::URLRequest> request = context->CreateRequest( - GURL(endpoint), net::DEFAULT_PRIORITY, this); + GURL(endpoint), net::DEFAULT_PRIORITY, this, NULL); request->set_method("HEAD"); request->SetExtraRequestHeaderByName( "Proxy-Host-Advisory", header_value, false); |