| 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 #ifndef CONTENT_BROWSER_LOADER_RESOURCE_LOADER_H_ | 5 #ifndef CONTENT_BROWSER_LOADER_RESOURCE_LOADER_H_ |
| 6 #define CONTENT_BROWSER_LOADER_RESOURCE_LOADER_H_ | 6 #define CONTENT_BROWSER_LOADER_RESOURCE_LOADER_H_ |
| 7 | 7 |
| 8 #include "base/gtest_prod_util.h" | 8 #include "base/gtest_prod_util.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 11 #include "base/timer/timer.h" |
| 11 #include "content/browser/loader/resource_handler.h" | 12 #include "content/browser/loader/resource_handler.h" |
| 12 #include "content/browser/ssl/ssl_error_handler.h" | 13 #include "content/browser/ssl/ssl_error_handler.h" |
| 13 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
| 14 #include "content/public/browser/resource_controller.h" | 15 #include "content/public/browser/resource_controller.h" |
| 15 #include "net/url_request/url_request.h" | 16 #include "net/url_request/url_request.h" |
| 16 | 17 |
| 17 namespace net { | 18 namespace net { |
| 18 class ClientCertStore; | 19 class ClientCertStore; |
| 19 } | 20 } |
| 20 | 21 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 32 public ResourceController { | 33 public ResourceController { |
| 33 public: | 34 public: |
| 34 ResourceLoader(scoped_ptr<net::URLRequest> request, | 35 ResourceLoader(scoped_ptr<net::URLRequest> request, |
| 35 scoped_ptr<ResourceHandler> handler, | 36 scoped_ptr<ResourceHandler> handler, |
| 36 ResourceLoaderDelegate* delegate); | 37 ResourceLoaderDelegate* delegate); |
| 37 virtual ~ResourceLoader(); | 38 virtual ~ResourceLoader(); |
| 38 | 39 |
| 39 void StartRequest(); | 40 void StartRequest(); |
| 40 void CancelRequest(bool from_renderer); | 41 void CancelRequest(bool from_renderer); |
| 41 | 42 |
| 43 // Sets the resource as detached and starts a timer to cancel the request in |
| 44 // the future. |
| 45 void Detach(); |
| 46 |
| 42 void ReportUploadProgress(); | 47 void ReportUploadProgress(); |
| 43 | 48 |
| 44 bool is_transferring() const { return is_transferring_; } | 49 bool is_transferring() const { return is_transferring_; } |
| 45 void MarkAsTransferring(const GURL& target_url); | 50 void MarkAsTransferring(const GURL& target_url); |
| 46 void CompleteTransfer(); | 51 void CompleteTransfer(); |
| 47 | 52 |
| 48 net::URLRequest* request() { return request_.get(); } | 53 net::URLRequest* request() { return request_.get(); } |
| 49 ResourceRequestInfoImpl* GetRequestInfo(); | 54 ResourceRequestInfoImpl* GetRequestInfo(); |
| 50 | 55 |
| 51 void ClearLoginDelegate(); | 56 void ClearLoginDelegate(); |
| 52 void ClearSSLClientAuthHandler(); | 57 void ClearSSLClientAuthHandler(); |
| 53 | 58 |
| 54 // IPC message handlers: | 59 // IPC message handlers: |
| 55 void OnUploadProgressACK(); | 60 void OnUploadProgressACK(); |
| 56 | 61 |
| 62 void set_detachable_delay_ms(int delay) { |
| 63 detachable_delay_on_cancel_ms_ = delay; |
| 64 } |
| 65 |
| 57 private: | 66 private: |
| 58 FRIEND_TEST_ALL_PREFIXES(ResourceLoaderTest, ClientCertStoreLookup); | 67 FRIEND_TEST_ALL_PREFIXES(ResourceLoaderTest, ClientCertStoreLookup); |
| 59 | 68 |
| 60 ResourceLoader(scoped_ptr<net::URLRequest> request, | 69 ResourceLoader(scoped_ptr<net::URLRequest> request, |
| 61 scoped_ptr<ResourceHandler> handler, | 70 scoped_ptr<ResourceHandler> handler, |
| 62 ResourceLoaderDelegate* delegate, | 71 ResourceLoaderDelegate* delegate, |
| 63 scoped_ptr<net::ClientCertStore> client_cert_store); | 72 scoped_ptr<net::ClientCertStore> client_cert_store); |
| 64 | 73 |
| 65 // Initialization logic shared between the public and private constructor. | 74 // Initialization logic shared between the public and private constructor. |
| 66 void Init(scoped_ptr<net::URLRequest> request, | 75 void Init(scoped_ptr<net::URLRequest> request, |
| (...skipping 23 matching lines...) Expand all Loading... |
| 90 virtual void ContinueSSLRequest(const GlobalRequestID& id) OVERRIDE; | 99 virtual void ContinueSSLRequest(const GlobalRequestID& id) OVERRIDE; |
| 91 | 100 |
| 92 // ResourceController implementation: | 101 // ResourceController implementation: |
| 93 virtual void Resume() OVERRIDE; | 102 virtual void Resume() OVERRIDE; |
| 94 virtual void Cancel() OVERRIDE; | 103 virtual void Cancel() OVERRIDE; |
| 95 virtual void CancelAndIgnore() OVERRIDE; | 104 virtual void CancelAndIgnore() OVERRIDE; |
| 96 virtual void CancelWithError(int error_code) OVERRIDE; | 105 virtual void CancelWithError(int error_code) OVERRIDE; |
| 97 | 106 |
| 98 void StartRequestInternal(); | 107 void StartRequestInternal(); |
| 99 void CancelRequestInternal(int error, bool from_renderer); | 108 void CancelRequestInternal(int error, bool from_renderer); |
| 109 |
| 100 void CompleteResponseStarted(); | 110 void CompleteResponseStarted(); |
| 101 void StartReading(bool is_continuation); | 111 void StartReading(bool is_continuation); |
| 102 void ResumeReading(); | 112 void ResumeReading(); |
| 103 void ReadMore(int* bytes_read); | 113 void ReadMore(int* bytes_read); |
| 104 void CompleteRead(int bytes_read); | 114 void CompleteRead(int bytes_read); |
| 105 void ResponseCompleted(); | 115 void ResponseCompleted(); |
| 106 void CallDidFinishLoading(); | 116 void CallDidFinishLoading(); |
| 107 | 117 |
| 108 bool is_deferred() const { return deferred_stage_ != DEFERRED_NONE; } | 118 bool is_deferred() const { return deferred_stage_ != DEFERRED_NONE; } |
| 109 | 119 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 126 uint64 last_upload_position_; | 136 uint64 last_upload_position_; |
| 127 bool waiting_for_upload_progress_ack_; | 137 bool waiting_for_upload_progress_ack_; |
| 128 base::TimeTicks last_upload_ticks_; | 138 base::TimeTicks last_upload_ticks_; |
| 129 base::TimeTicks read_deferral_start_time_; | 139 base::TimeTicks read_deferral_start_time_; |
| 130 | 140 |
| 131 // Indicates that we are in a state of being transferred to a new downstream | 141 // Indicates that we are in a state of being transferred to a new downstream |
| 132 // consumer. We are waiting for a notification to complete the transfer, at | 142 // consumer. We are waiting for a notification to complete the transfer, at |
| 133 // which point we'll receive a new ResourceHandler. | 143 // which point we'll receive a new ResourceHandler. |
| 134 bool is_transferring_; | 144 bool is_transferring_; |
| 135 | 145 |
| 146 int detachable_delay_on_cancel_ms_; |
| 147 |
| 148 scoped_ptr<base::OneShotTimer<ResourceLoader> > detached_timer_; |
| 149 |
| 136 scoped_ptr<net::ClientCertStore> client_cert_store_; | 150 scoped_ptr<net::ClientCertStore> client_cert_store_; |
| 137 | 151 |
| 138 base::WeakPtrFactory<ResourceLoader> weak_ptr_factory_; | 152 base::WeakPtrFactory<ResourceLoader> weak_ptr_factory_; |
| 139 | 153 |
| 140 DISALLOW_COPY_AND_ASSIGN(ResourceLoader); | 154 DISALLOW_COPY_AND_ASSIGN(ResourceLoader); |
| 141 }; | 155 }; |
| 142 | 156 |
| 143 } // namespace content | 157 } // namespace content |
| 144 | 158 |
| 145 #endif // CONTENT_BROWSER_LOADER_RESOURCE_LOADER_H_ | 159 #endif // CONTENT_BROWSER_LOADER_RESOURCE_LOADER_H_ |
| OLD | NEW |