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

Side by Side Diff: content/browser/loader/resource_loader.h

Issue 755933002: Revert of "Remove SSLClientAuthHandler's RDH dependency." (https://codereview.chromium.org/59687300… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: one other VLOG -> DVLOG conversion Created 6 years 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 #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 "content/browser/loader/resource_handler.h" 11 #include "content/browser/loader/resource_handler.h"
12 #include "content/browser/ssl/ssl_error_handler.h" 12 #include "content/browser/ssl/ssl_error_handler.h"
13 #include "content/common/content_export.h" 13 #include "content/common/content_export.h"
14 #include "content/public/browser/resource_controller.h" 14 #include "content/public/browser/resource_controller.h"
15 #include "content/public/common/signed_certificate_timestamp_id_and_status.h" 15 #include "content/public/common/signed_certificate_timestamp_id_and_status.h"
16 #include "net/url_request/url_request.h" 16 #include "net/url_request/url_request.h"
17 17
18 namespace net {
19 class X509Certificate;
20 }
21
22 namespace content { 18 namespace content {
23 class ResourceDispatcherHostLoginDelegate; 19 class ResourceDispatcherHostLoginDelegate;
24 class ResourceLoaderDelegate; 20 class ResourceLoaderDelegate;
25 class ResourceRequestInfoImpl; 21 class ResourceRequestInfoImpl;
26 class SSLClientAuthHandler; 22 class SSLClientAuthHandler;
27 23
28 // This class is responsible for driving the URLRequest (i.e., calling Start, 24 // This class is responsible for driving the URLRequest (i.e., calling Start,
29 // Read, and servicing events). It has a ResourceHandler, which is typically a 25 // Read, and servicing events). It has a ResourceHandler, which is typically a
30 // chain of ResourceHandlers, and is the ResourceController for its handler. 26 // chain of ResourceHandlers, and is the ResourceController for its handler.
31 class CONTENT_EXPORT ResourceLoader : public net::URLRequest::Delegate, 27 class CONTENT_EXPORT ResourceLoader : public net::URLRequest::Delegate,
(...skipping 11 matching lines...) Expand all
43 void ReportUploadProgress(); 39 void ReportUploadProgress();
44 40
45 bool is_transferring() const { return is_transferring_; } 41 bool is_transferring() const { return is_transferring_; }
46 void MarkAsTransferring(); 42 void MarkAsTransferring();
47 void CompleteTransfer(); 43 void CompleteTransfer();
48 44
49 net::URLRequest* request() { return request_.get(); } 45 net::URLRequest* request() { return request_.get(); }
50 ResourceRequestInfoImpl* GetRequestInfo(); 46 ResourceRequestInfoImpl* GetRequestInfo();
51 47
52 void ClearLoginDelegate(); 48 void ClearLoginDelegate();
49 void ClearSSLClientAuthHandler();
53 50
54 // IPC message handlers: 51 // IPC message handlers:
55 void OnUploadProgressACK(); 52 void OnUploadProgressACK();
56 53
57 private: 54 private:
58 FRIEND_TEST_ALL_PREFIXES(ResourceLoaderTest, ClientCertStoreLookup); 55 FRIEND_TEST_ALL_PREFIXES(ResourceLoaderTest, ClientCertStoreLookup);
59 FRIEND_TEST_ALL_PREFIXES(ResourceLoaderTest, ClientCertStoreNull); 56 FRIEND_TEST_ALL_PREFIXES(ResourceLoaderTest, ClientCertStoreNull);
60 57
61 // net::URLRequest::Delegate implementation: 58 // net::URLRequest::Delegate implementation:
62 void OnReceivedRedirect(net::URLRequest* request, 59 void OnReceivedRedirect(net::URLRequest* request,
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 SignedCertificateTimestampIDStatusList* sct_ids); 92 SignedCertificateTimestampIDStatusList* sct_ids);
96 void CompleteResponseStarted(); 93 void CompleteResponseStarted();
97 void StartReading(bool is_continuation); 94 void StartReading(bool is_continuation);
98 void ResumeReading(); 95 void ResumeReading();
99 void ReadMore(int* bytes_read); 96 void ReadMore(int* bytes_read);
100 // Passes a read result to the handler. 97 // Passes a read result to the handler.
101 void CompleteRead(int bytes_read); 98 void CompleteRead(int bytes_read);
102 void ResponseCompleted(); 99 void ResponseCompleted();
103 void CallDidFinishLoading(); 100 void CallDidFinishLoading();
104 void RecordHistograms(); 101 void RecordHistograms();
105 void ContinueWithCertificate(net::X509Certificate* cert);
106 102
107 bool is_deferred() const { return deferred_stage_ != DEFERRED_NONE; } 103 bool is_deferred() const { return deferred_stage_ != DEFERRED_NONE; }
108 104
109 // Used for categorizing loading of prefetches for reporting in histograms. 105 // Used for categorizing loading of prefetches for reporting in histograms.
110 // NOTE: This enumeration is used in histograms, so please do not add entries 106 // NOTE: This enumeration is used in histograms, so please do not add entries
111 // in the middle. 107 // in the middle.
112 enum PrefetchStatus { 108 enum PrefetchStatus {
113 STATUS_UNDEFINED, 109 STATUS_UNDEFINED,
114 STATUS_SUCCESS_FROM_CACHE, 110 STATUS_SUCCESS_FROM_CACHE,
115 STATUS_SUCCESS_FROM_NETWORK, 111 STATUS_SUCCESS_FROM_NETWORK,
(...skipping 10 matching lines...) Expand all
126 DEFERRED_RESPONSE_COMPLETE, 122 DEFERRED_RESPONSE_COMPLETE,
127 DEFERRED_FINISH 123 DEFERRED_FINISH
128 }; 124 };
129 DeferredStage deferred_stage_; 125 DeferredStage deferred_stage_;
130 126
131 scoped_ptr<net::URLRequest> request_; 127 scoped_ptr<net::URLRequest> request_;
132 scoped_ptr<ResourceHandler> handler_; 128 scoped_ptr<ResourceHandler> handler_;
133 ResourceLoaderDelegate* delegate_; 129 ResourceLoaderDelegate* delegate_;
134 130
135 scoped_refptr<ResourceDispatcherHostLoginDelegate> login_delegate_; 131 scoped_refptr<ResourceDispatcherHostLoginDelegate> login_delegate_;
136 scoped_ptr<SSLClientAuthHandler> ssl_client_auth_handler_; 132 scoped_refptr<SSLClientAuthHandler> ssl_client_auth_handler_;
137 133
138 uint64 last_upload_position_; 134 uint64 last_upload_position_;
139 bool waiting_for_upload_progress_ack_; 135 bool waiting_for_upload_progress_ack_;
140 base::TimeTicks last_upload_ticks_; 136 base::TimeTicks last_upload_ticks_;
141 base::TimeTicks read_deferral_start_time_; 137 base::TimeTicks read_deferral_start_time_;
142 138
143 // Indicates that we are in a state of being transferred to a new downstream 139 // Indicates that we are in a state of being transferred to a new downstream
144 // consumer. We are waiting for a notification to complete the transfer, at 140 // consumer. We are waiting for a notification to complete the transfer, at
145 // which point we'll receive a new ResourceHandler. 141 // which point we'll receive a new ResourceHandler.
146 bool is_transferring_; 142 bool is_transferring_;
147 143
148 base::WeakPtrFactory<ResourceLoader> weak_ptr_factory_; 144 base::WeakPtrFactory<ResourceLoader> weak_ptr_factory_;
149 145
150 DISALLOW_COPY_AND_ASSIGN(ResourceLoader); 146 DISALLOW_COPY_AND_ASSIGN(ResourceLoader);
151 }; 147 };
152 148
153 } // namespace content 149 } // namespace content
154 150
155 #endif // CONTENT_BROWSER_LOADER_RESOURCE_LOADER_H_ 151 #endif // CONTENT_BROWSER_LOADER_RESOURCE_LOADER_H_
OLDNEW
« no previous file with comments | « content/browser/loader/resource_dispatcher_host_impl.cc ('k') | content/browser/loader/resource_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698