| 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 "net/url_request/url_fetcher_core.h" | 5 #include "net/url_request/url_fetcher_core.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/metrics/histogram.h" | 9 #include "base/metrics/histogram.h" |
| 10 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 request_.reset(request_context_getter_->GetURLRequestContext()->CreateRequest( | 526 request_.reset(request_context_getter_->GetURLRequestContext()->CreateRequest( |
| 527 original_url_, this)); | 527 original_url_, this)); |
| 528 request_->set_stack_trace(stack_trace_); | 528 request_->set_stack_trace(stack_trace_); |
| 529 int flags = request_->load_flags() | load_flags_; | 529 int flags = request_->load_flags() | load_flags_; |
| 530 if (!g_interception_enabled) | 530 if (!g_interception_enabled) |
| 531 flags = flags | LOAD_DISABLE_INTERCEPT; | 531 flags = flags | LOAD_DISABLE_INTERCEPT; |
| 532 | 532 |
| 533 if (is_chunked_upload_) | 533 if (is_chunked_upload_) |
| 534 request_->EnableChunkedUpload(); | 534 request_->EnableChunkedUpload(); |
| 535 request_->set_load_flags(flags); | 535 request_->set_load_flags(flags); |
| 536 request_->set_referrer(referrer_); | 536 request_->SetReferrer(referrer_); |
| 537 request_->set_first_party_for_cookies(first_party_for_cookies_.is_empty() ? | 537 request_->set_first_party_for_cookies(first_party_for_cookies_.is_empty() ? |
| 538 original_url_ : first_party_for_cookies_); | 538 original_url_ : first_party_for_cookies_); |
| 539 if (url_request_data_key_ && !url_request_create_data_callback_.is_null()) { | 539 if (url_request_data_key_ && !url_request_create_data_callback_.is_null()) { |
| 540 request_->SetUserData(url_request_data_key_, | 540 request_->SetUserData(url_request_data_key_, |
| 541 url_request_create_data_callback_.Run()); | 541 url_request_create_data_callback_.Run()); |
| 542 } | 542 } |
| 543 | 543 |
| 544 switch (request_type_) { | 544 switch (request_type_) { |
| 545 case URLFetcher::GET: | 545 case URLFetcher::GET: |
| 546 break; | 546 break; |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 900 } | 900 } |
| 901 | 901 |
| 902 void URLFetcherCore::InformDelegateDownloadDataInDelegateThread( | 902 void URLFetcherCore::InformDelegateDownloadDataInDelegateThread( |
| 903 scoped_ptr<std::string> download_data) { | 903 scoped_ptr<std::string> download_data) { |
| 904 DCHECK(delegate_task_runner_->BelongsToCurrentThread()); | 904 DCHECK(delegate_task_runner_->BelongsToCurrentThread()); |
| 905 if (delegate_) | 905 if (delegate_) |
| 906 delegate_->OnURLFetchDownloadData(fetcher_, download_data.Pass()); | 906 delegate_->OnURLFetchDownloadData(fetcher_, download_data.Pass()); |
| 907 } | 907 } |
| 908 | 908 |
| 909 } // namespace net | 909 } // namespace net |
| OLD | NEW |