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

Side by Side Diff: ios/chrome/browser/ios_chrome_io_thread.h

Issue 1579233002: Rename CertPolicyEnforcer to CTPolicyEnforcer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « chrome/browser/io_thread.cc ('k') | ios/chrome/browser/ios_chrome_io_thread.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ 5 #ifndef IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_
6 #define IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ 6 #define IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 18 matching lines...) Expand all
29 29
30 class PrefProxyConfigTracker; 30 class PrefProxyConfigTracker;
31 class PrefService; 31 class PrefService;
32 class SystemURLRequestContextGetter; 32 class SystemURLRequestContextGetter;
33 33
34 namespace base { 34 namespace base {
35 class CommandLine; 35 class CommandLine;
36 } // namespace base 36 } // namespace base
37 37
38 namespace net { 38 namespace net {
39 class CertPolicyEnforcer; 39 class CTPolicyEnforcer;
40 class CertVerifier; 40 class CertVerifier;
41 class ChannelIDService; 41 class ChannelIDService;
42 class CookieStore; 42 class CookieStore;
43 class CTVerifier; 43 class CTVerifier;
44 class HostResolver; 44 class HostResolver;
45 class HttpAuthHandlerFactory; 45 class HttpAuthHandlerFactory;
46 class HttpAuthPreferences; 46 class HttpAuthPreferences;
47 class HttpNetworkSession; 47 class HttpNetworkSession;
48 class HttpServerProperties; 48 class HttpServerProperties;
49 class HttpTransactionFactory; 49 class HttpTransactionFactory;
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 scoped_ptr<net::NetworkDelegate> system_network_delegate; 109 scoped_ptr<net::NetworkDelegate> system_network_delegate;
110 scoped_ptr<net::HostResolver> host_resolver; 110 scoped_ptr<net::HostResolver> host_resolver;
111 scoped_ptr<net::CertVerifier> cert_verifier; 111 scoped_ptr<net::CertVerifier> cert_verifier;
112 // The ChannelIDService must outlive the HttpTransactionFactory. 112 // The ChannelIDService must outlive the HttpTransactionFactory.
113 scoped_ptr<net::ChannelIDService> system_channel_id_service; 113 scoped_ptr<net::ChannelIDService> system_channel_id_service;
114 // This TransportSecurityState doesn't load or save any state. It's only 114 // This TransportSecurityState doesn't load or save any state. It's only
115 // used to enforce pinning for system requests and will only use built-in 115 // used to enforce pinning for system requests and will only use built-in
116 // pins. 116 // pins.
117 scoped_ptr<net::TransportSecurityState> transport_security_state; 117 scoped_ptr<net::TransportSecurityState> transport_security_state;
118 scoped_ptr<net::CTVerifier> cert_transparency_verifier; 118 scoped_ptr<net::CTVerifier> cert_transparency_verifier;
119 scoped_ptr<net::CertPolicyEnforcer> cert_policy_enforcer; 119 scoped_ptr<net::CTPolicyEnforcer> ct_policy_enforcer;
120 scoped_refptr<net::SSLConfigService> ssl_config_service; 120 scoped_refptr<net::SSLConfigService> ssl_config_service;
121 scoped_ptr<net::HttpAuthPreferences> http_auth_preferences; 121 scoped_ptr<net::HttpAuthPreferences> http_auth_preferences;
122 scoped_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory; 122 scoped_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory;
123 scoped_ptr<net::HttpServerProperties> http_server_properties; 123 scoped_ptr<net::HttpServerProperties> http_server_properties;
124 scoped_ptr<net::URLRequestBackoffManager> url_request_backoff_manager; 124 scoped_ptr<net::URLRequestBackoffManager> url_request_backoff_manager;
125 scoped_ptr<net::ProxyService> system_proxy_service; 125 scoped_ptr<net::ProxyService> system_proxy_service;
126 scoped_ptr<net::HttpNetworkSession> system_http_network_session; 126 scoped_ptr<net::HttpNetworkSession> system_http_network_session;
127 scoped_ptr<net::HttpTransactionFactory> system_http_transaction_factory; 127 scoped_ptr<net::HttpTransactionFactory> system_http_transaction_factory;
128 scoped_ptr<net::URLRequestJobFactory> system_url_request_job_factory; 128 scoped_ptr<net::URLRequestJobFactory> system_url_request_job_factory;
129 scoped_ptr<net::URLRequestContext> system_request_context; 129 scoped_ptr<net::URLRequestContext> system_request_context;
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 system_url_request_context_getter_; 390 system_url_request_context_getter_;
391 391
392 const base::TimeTicks creation_time_; 392 const base::TimeTicks creation_time_;
393 393
394 base::WeakPtrFactory<IOSChromeIOThread> weak_factory_; 394 base::WeakPtrFactory<IOSChromeIOThread> weak_factory_;
395 395
396 DISALLOW_COPY_AND_ASSIGN(IOSChromeIOThread); 396 DISALLOW_COPY_AND_ASSIGN(IOSChromeIOThread);
397 }; 397 };
398 398
399 #endif // IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ 399 #endif // IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_
OLDNEW
« no previous file with comments | « chrome/browser/io_thread.cc ('k') | ios/chrome/browser/ios_chrome_io_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698