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

Side by Side Diff: net/url_request/url_request_context.h

Issue 7493025: Instantiate OriginBoundCertService in relevant places and do plumbing to pass it down to HttpNetw... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // This class represents contextual information (cookies, cache, etc.) 5 // This class represents contextual information (cookies, cache, etc.)
6 // that's useful when processing resource requests. 6 // that's useful when processing resource requests.
7 // The class is reference-counted so that it can be cleaned up after any 7 // The class is reference-counted so that it can be cleaned up after any
8 // requests that are using it have been completed. 8 // requests that are using it have been completed.
9 9
10 #ifndef NET_URL_REQUEST_URL_REQUEST_CONTEXT_H_ 10 #ifndef NET_URL_REQUEST_URL_REQUEST_CONTEXT_H_
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 return cert_verifier_; 68 return cert_verifier_;
69 } 69 }
70 70
71 void set_cert_verifier(CertVerifier* cert_verifier) { 71 void set_cert_verifier(CertVerifier* cert_verifier) {
72 cert_verifier_ = cert_verifier; 72 cert_verifier_ = cert_verifier;
73 } 73 }
74 74
75 OriginBoundCertService* origin_bound_cert_service() const { 75 OriginBoundCertService* origin_bound_cert_service() const {
76 return origin_bound_cert_service_; 76 return origin_bound_cert_service_;
77 } 77 }
78
78 void set_origin_bound_cert_service( 79 void set_origin_bound_cert_service(
79 OriginBoundCertService* origin_bound_cert_service) { 80 OriginBoundCertService* origin_bound_cert_service) {
80 origin_bound_cert_service_ = origin_bound_cert_service; 81 origin_bound_cert_service_ = origin_bound_cert_service;
81 } 82 }
82 83
83 DnsRRResolver* dnsrr_resolver() const { 84 DnsRRResolver* dnsrr_resolver() const {
84 return dnsrr_resolver_; 85 return dnsrr_resolver_;
85 } 86 }
86 87
87 void set_dnsrr_resolver(DnsRRResolver* dnsrr_resolver) { 88 void set_dnsrr_resolver(DnsRRResolver* dnsrr_resolver) {
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 // Important: When adding any new members below, consider whether they need to 223 // Important: When adding any new members below, consider whether they need to
223 // be added to CopyFrom. 224 // be added to CopyFrom.
224 // --------------------------------------------------------------------------- 225 // ---------------------------------------------------------------------------
225 226
226 DISALLOW_COPY_AND_ASSIGN(URLRequestContext); 227 DISALLOW_COPY_AND_ASSIGN(URLRequestContext);
227 }; 228 };
228 229
229 } // namespace net 230 } // namespace net
230 231
231 #endif // NET_URL_REQUEST_URL_REQUEST_CONTEXT_H_ 232 #endif // NET_URL_REQUEST_URL_REQUEST_CONTEXT_H_
OLDNEW
« chrome/browser/profiles/profile_io_data.h ('K') | « net/http/http_cache.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698