Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(437)

Side by Side Diff: net/url_request/url_request_http_job.cc

Issue 2313013002: Revert of Adjust callers and networking delegates in net/ to modified APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@URLRequestRead
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_request_http_job.h" 5 #include "net/url_request/url_request_http_job.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/bind_helpers.h" 9 #include "base/bind_helpers.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 1568 matching lines...) Expand 10 before | Expand all | Expand 10 after
1579 void URLRequestHttpJob::DoneWithRequest(CompletionCause reason) { 1579 void URLRequestHttpJob::DoneWithRequest(CompletionCause reason) {
1580 if (done_) 1580 if (done_)
1581 return; 1581 return;
1582 done_ = true; 1582 done_ = true;
1583 1583
1584 // Notify NetworkQualityEstimator. 1584 // Notify NetworkQualityEstimator.
1585 if (request()) { 1585 if (request()) {
1586 NetworkQualityEstimator* network_quality_estimator = 1586 NetworkQualityEstimator* network_quality_estimator =
1587 request()->context()->network_quality_estimator(); 1587 request()->context()->network_quality_estimator();
1588 if (network_quality_estimator) 1588 if (network_quality_estimator)
1589 network_quality_estimator->NotifyRequestCompleted( 1589 network_quality_estimator->NotifyRequestCompleted(*request());
1590 *request(), request_->status().error());
1591 } 1590 }
1592 1591
1593 RecordPerfHistograms(reason); 1592 RecordPerfHistograms(reason);
1594 if (request_) 1593 if (request_)
1595 request_->set_received_response_content_length(prefilter_bytes_read()); 1594 request_->set_received_response_content_length(prefilter_bytes_read());
1596 } 1595 }
1597 1596
1598 HttpResponseHeaders* URLRequestHttpJob::GetResponseHeaders() const { 1597 HttpResponseHeaders* URLRequestHttpJob::GetResponseHeaders() const {
1599 DCHECK(transaction_.get()); 1598 DCHECK(transaction_.get());
1600 DCHECK(transaction_->GetResponseInfo()); 1599 DCHECK(transaction_->GetResponseInfo());
1601 return override_response_headers_.get() ? 1600 return override_response_headers_.get() ?
1602 override_response_headers_.get() : 1601 override_response_headers_.get() :
1603 transaction_->GetResponseInfo()->headers.get(); 1602 transaction_->GetResponseInfo()->headers.get();
1604 } 1603 }
1605 1604
1606 void URLRequestHttpJob::NotifyURLRequestDestroyed() { 1605 void URLRequestHttpJob::NotifyURLRequestDestroyed() {
1607 awaiting_callback_ = false; 1606 awaiting_callback_ = false;
1608 1607
1609 // Notify NetworkQualityEstimator. 1608 // Notify NetworkQualityEstimator.
1610 if (request()) { 1609 if (request()) {
1611 NetworkQualityEstimator* network_quality_estimator = 1610 NetworkQualityEstimator* network_quality_estimator =
1612 request()->context()->network_quality_estimator(); 1611 request()->context()->network_quality_estimator();
1613 if (network_quality_estimator) 1612 if (network_quality_estimator)
1614 network_quality_estimator->NotifyURLRequestDestroyed(*request()); 1613 network_quality_estimator->NotifyURLRequestDestroyed(*request());
1615 } 1614 }
1616 } 1615 }
1617 1616
1618 } // namespace net 1617 } // namespace net
OLDNEW
« no previous file with comments | « net/url_request/url_request_ftp_job_unittest.cc ('k') | net/url_request/url_request_http_job_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698