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_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 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1014 weak_factory_.InvalidateWeakPtrs(); | 1014 weak_factory_.InvalidateWeakPtrs(); |
1015 DestroyTransaction(); | 1015 DestroyTransaction(); |
1016 URLRequestJob::Kill(); | 1016 URLRequestJob::Kill(); |
1017 } | 1017 } |
1018 | 1018 |
1019 LoadState URLRequestHttpJob::GetLoadState() const { | 1019 LoadState URLRequestHttpJob::GetLoadState() const { |
1020 return transaction_.get() ? | 1020 return transaction_.get() ? |
1021 transaction_->GetLoadState() : LOAD_STATE_IDLE; | 1021 transaction_->GetLoadState() : LOAD_STATE_IDLE; |
1022 } | 1022 } |
1023 | 1023 |
1024 uint64 URLRequestHttpJob::GetUploadProgress() const { | 1024 UploadProgress URLRequestHttpJob::GetUploadProgress() const { |
1025 return transaction_.get() ? transaction_->GetUploadProgress().position() : 0; | 1025 return transaction_.get() ? |
| 1026 transaction_->GetUploadProgress() : UploadProgress(); |
1026 } | 1027 } |
1027 | 1028 |
1028 bool URLRequestHttpJob::GetMimeType(std::string* mime_type) const { | 1029 bool URLRequestHttpJob::GetMimeType(std::string* mime_type) const { |
1029 DCHECK(transaction_.get()); | 1030 DCHECK(transaction_.get()); |
1030 | 1031 |
1031 if (!response_info_) | 1032 if (!response_info_) |
1032 return false; | 1033 return false; |
1033 | 1034 |
1034 return GetResponseHeaders()->GetMimeType(mime_type); | 1035 return GetResponseHeaders()->GetMimeType(mime_type); |
1035 } | 1036 } |
(...skipping 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1627 | 1628 |
1628 void URLRequestHttpJob::NotifyURLRequestDestroyed() { | 1629 void URLRequestHttpJob::NotifyURLRequestDestroyed() { |
1629 awaiting_callback_ = false; | 1630 awaiting_callback_ = false; |
1630 } | 1631 } |
1631 | 1632 |
1632 void URLRequestHttpJob::OnDetachRequest() { | 1633 void URLRequestHttpJob::OnDetachRequest() { |
1633 http_transaction_delegate_->OnDetachRequest(); | 1634 http_transaction_delegate_->OnDetachRequest(); |
1634 } | 1635 } |
1635 | 1636 |
1636 } // namespace net | 1637 } // namespace net |
OLD | NEW |