| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/net/http_pipelining_compatibility_client.h" | 5 #include "chrome/browser/net/http_pipelining_compatibility_client.h" |
| 6 | 6 |
| 7 #include "base/metrics/field_trial.h" | 7 #include "base/metrics/field_trial.h" |
| 8 #include "base/metrics/histogram.h" | 8 #include "base/metrics/histogram.h" |
| 9 #include "base/strings/string_number_conversions.h" | 9 #include "base/strings/string_number_conversions.h" |
| 10 #include "base/strings/string_split.h" | 10 #include "base/strings/string_split.h" |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 const std::string& base_url, | 86 const std::string& base_url, |
| 87 const RequestInfo& info, | 87 const RequestInfo& info, |
| 88 internal::PipelineTestRequest::Delegate* delegate, | 88 internal::PipelineTestRequest::Delegate* delegate, |
| 89 net::URLRequestContext* url_request_context) | 89 net::URLRequestContext* url_request_context) |
| 90 : delegate_(delegate), | 90 : delegate_(delegate), |
| 91 request_id_(request_id), | 91 request_id_(request_id), |
| 92 url_request_(url_request_context->CreateRequest( | 92 url_request_(url_request_context->CreateRequest( |
| 93 GURL(base_url + info.filename), this)), | 93 GURL(base_url + info.filename), this)), |
| 94 info_(info), | 94 info_(info), |
| 95 response_code_(0) { | 95 response_code_(0) { |
| 96 url_request_->set_load_flags(net::LOAD_BYPASS_CACHE | | 96 url_request_->SetLoadFlags(net::LOAD_BYPASS_CACHE | |
| 97 net::LOAD_DISABLE_CACHE | | 97 net::LOAD_DISABLE_CACHE | |
| 98 net::LOAD_DO_NOT_SAVE_COOKIES | | 98 net::LOAD_DO_NOT_SAVE_COOKIES | |
| 99 net::LOAD_DO_NOT_SEND_COOKIES | | 99 net::LOAD_DO_NOT_SEND_COOKIES | |
| 100 net::LOAD_DO_NOT_PROMPT_FOR_LOGIN | | 100 net::LOAD_DO_NOT_PROMPT_FOR_LOGIN | |
| 101 net::LOAD_DO_NOT_SEND_AUTH_DATA); | 101 net::LOAD_DO_NOT_SEND_AUTH_DATA); |
| 102 } | 102 } |
| 103 | 103 |
| 104 void Request::Start() { | 104 void Request::Start() { |
| 105 url_request_->Start(); | 105 url_request_->Start(); |
| 106 } | 106 } |
| 107 | 107 |
| 108 void Request::OnReceivedRedirect( | 108 void Request::OnReceivedRedirect( |
| 109 net::URLRequest* request, | 109 net::URLRequest* request, |
| 110 const GURL& new_url, | 110 const GURL& new_url, |
| 111 bool* defer_redirect) { | 111 bool* defer_redirect) { |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 | 527 |
| 528 content::BrowserThread::PostTask( | 528 content::BrowserThread::PostTask( |
| 529 content::BrowserThread::IO, | 529 content::BrowserThread::IO, |
| 530 FROM_HERE, | 530 FROM_HERE, |
| 531 base::Bind(&CollectPipeliningCapabilityStatsOnIOThread, | 531 base::Bind(&CollectPipeliningCapabilityStatsOnIOThread, |
| 532 pipeline_test_server, | 532 pipeline_test_server, |
| 533 io_thread)); | 533 io_thread)); |
| 534 } | 534 } |
| 535 | 535 |
| 536 } // namespace chrome_browser_net | 536 } // namespace chrome_browser_net |
| OLD | NEW |