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

Side by Side Diff: chrome/browser/profiles/profile_io_data.h

Issue 8944001: net: remove DNS certificate checking code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | 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 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_
6 #define CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ 6 #define CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 26 matching lines...) Expand all
37 namespace fileapi { 37 namespace fileapi {
38 class FileSystemContext; 38 class FileSystemContext;
39 } // namespace fileapi 39 } // namespace fileapi
40 40
41 namespace media_stream { 41 namespace media_stream {
42 class MediaStreamManager; 42 class MediaStreamManager;
43 } // namespace media_stream 43 } // namespace media_stream
44 44
45 namespace net { 45 namespace net {
46 class CookieStore; 46 class CookieStore;
47 class DnsCertProvenanceChecker;
48 class FraudulentCertificateReporter; 47 class FraudulentCertificateReporter;
49 class HttpTransactionFactory; 48 class HttpTransactionFactory;
50 class OriginBoundCertService; 49 class OriginBoundCertService;
51 class ProxyConfigService; 50 class ProxyConfigService;
52 class ProxyService; 51 class ProxyService;
53 class SSLConfigService; 52 class SSLConfigService;
54 class TransportSecurityState; 53 class TransportSecurityState;
55 } // namespace net 54 } // namespace net
56 55
57 namespace policy { 56 namespace policy {
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 // ProfileIOData, and the derived class calls this method to set the 197 // ProfileIOData, and the derived class calls this method to set the
199 // origin_bound_cert_service_ member and transfers ownership to the base 198 // origin_bound_cert_service_ member and transfers ownership to the base
200 // class. 199 // class.
201 void set_origin_bound_cert_service( 200 void set_origin_bound_cert_service(
202 net::OriginBoundCertService* origin_bound_cert_service) const; 201 net::OriginBoundCertService* origin_bound_cert_service) const;
203 202
204 net::NetworkDelegate* network_delegate() const { 203 net::NetworkDelegate* network_delegate() const {
205 return network_delegate_.get(); 204 return network_delegate_.get();
206 } 205 }
207 206
208 net::DnsCertProvenanceChecker* dns_cert_checker() const {
209 return dns_cert_checker_.get();
210 }
211
212 net::FraudulentCertificateReporter* fraudulent_certificate_reporter() const { 207 net::FraudulentCertificateReporter* fraudulent_certificate_reporter() const {
213 return fraudulent_certificate_reporter_.get(); 208 return fraudulent_certificate_reporter_.get();
214 } 209 }
215 210
216 net::ProxyService* proxy_service() const { 211 net::ProxyService* proxy_service() const {
217 return proxy_service_.get(); 212 return proxy_service_.get();
218 } 213 }
219 214
220 net::URLRequestJobFactory* job_factory() const { 215 net::URLRequestJobFactory* job_factory() const {
221 return job_factory_.get(); 216 return job_factory_.get();
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 mutable BooleanPrefMember safe_browsing_enabled_; 271 mutable BooleanPrefMember safe_browsing_enabled_;
277 272
278 // Pointed to by NetworkDelegate. 273 // Pointed to by NetworkDelegate.
279 mutable scoped_ptr<policy::URLBlacklistManager> url_blacklist_manager_; 274 mutable scoped_ptr<policy::URLBlacklistManager> url_blacklist_manager_;
280 275
281 // Pointed to by URLRequestContext. 276 // Pointed to by URLRequestContext.
282 mutable scoped_ptr<ChromeURLDataManagerBackend> 277 mutable scoped_ptr<ChromeURLDataManagerBackend>
283 chrome_url_data_manager_backend_; 278 chrome_url_data_manager_backend_;
284 mutable scoped_ptr<net::OriginBoundCertService> origin_bound_cert_service_; 279 mutable scoped_ptr<net::OriginBoundCertService> origin_bound_cert_service_;
285 mutable scoped_ptr<net::NetworkDelegate> network_delegate_; 280 mutable scoped_ptr<net::NetworkDelegate> network_delegate_;
286 mutable scoped_ptr<net::DnsCertProvenanceChecker> dns_cert_checker_;
287 mutable scoped_ptr<net::FraudulentCertificateReporter> 281 mutable scoped_ptr<net::FraudulentCertificateReporter>
288 fraudulent_certificate_reporter_; 282 fraudulent_certificate_reporter_;
289 mutable scoped_ptr<net::ProxyService> proxy_service_; 283 mutable scoped_ptr<net::ProxyService> proxy_service_;
290 mutable scoped_ptr<net::TransportSecurityState> transport_security_state_; 284 mutable scoped_ptr<net::TransportSecurityState> transport_security_state_;
291 mutable scoped_ptr<net::URLRequestJobFactory> job_factory_; 285 mutable scoped_ptr<net::URLRequestJobFactory> job_factory_;
292 286
293 // Pointed to by ResourceContext. 287 // Pointed to by ResourceContext.
294 mutable scoped_refptr<webkit_database::DatabaseTracker> database_tracker_; 288 mutable scoped_refptr<webkit_database::DatabaseTracker> database_tracker_;
295 mutable scoped_refptr<ChromeAppCacheService> appcache_service_; 289 mutable scoped_refptr<ChromeAppCacheService> appcache_service_;
296 mutable scoped_refptr<ChromeBlobStorageContext> blob_storage_context_; 290 mutable scoped_refptr<ChromeBlobStorageContext> blob_storage_context_;
(...skipping 21 matching lines...) Expand all
318 // One AppRequestContext per isolated app. 312 // One AppRequestContext per isolated app.
319 mutable AppRequestContextMap app_request_context_map_; 313 mutable AppRequestContextMap app_request_context_map_;
320 314
321 // TODO(jhawkins): Remove once crbug.com/102004 is fixed. 315 // TODO(jhawkins): Remove once crbug.com/102004 is fixed.
322 bool initialized_on_UI_thread_; 316 bool initialized_on_UI_thread_;
323 317
324 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); 318 DISALLOW_COPY_AND_ASSIGN(ProfileIOData);
325 }; 319 };
326 320
327 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ 321 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile_impl_io_data.cc ('k') | chrome/browser/profiles/profile_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698