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

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

Issue 9617039: Change Origin bound certs -> Domain bound certs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 9 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) 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 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 15 matching lines...) Expand all
26 class HostContentSettingsMap; 26 class HostContentSettingsMap;
27 class IOThread; 27 class IOThread;
28 class Profile; 28 class Profile;
29 class ProtocolHandlerRegistry; 29 class ProtocolHandlerRegistry;
30 class TransportSecurityPersister; 30 class TransportSecurityPersister;
31 31
32 namespace net { 32 namespace net {
33 class CookieStore; 33 class CookieStore;
34 class FraudulentCertificateReporter; 34 class FraudulentCertificateReporter;
35 class HttpTransactionFactory; 35 class HttpTransactionFactory;
36 class OriginBoundCertService; 36 class ServerBoundCertService;
37 class ProxyConfigService; 37 class ProxyConfigService;
38 class ProxyService; 38 class ProxyService;
39 class SSLConfigService; 39 class SSLConfigService;
40 class TransportSecurityState; 40 class TransportSecurityState;
41 } // namespace net 41 } // namespace net
42 42
43 namespace policy { 43 namespace policy {
44 class URLBlacklistManager; 44 class URLBlacklistManager;
45 } // namespace policy 45 } // namespace policy
46 46
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 void ShutdownOnUIThread(); 171 void ShutdownOnUIThread();
172 172
173 BooleanPrefMember* enable_referrers() const { 173 BooleanPrefMember* enable_referrers() const {
174 return &enable_referrers_; 174 return &enable_referrers_;
175 } 175 }
176 176
177 ChromeURLDataManagerBackend* chrome_url_data_manager_backend() const { 177 ChromeURLDataManagerBackend* chrome_url_data_manager_backend() const {
178 return chrome_url_data_manager_backend_.get(); 178 return chrome_url_data_manager_backend_.get();
179 } 179 }
180 180
181 // An OriginBoundCertService object is created by a derived class of 181 // A ServerBoundCertService object is created by a derived class of
182 // ProfileIOData, and the derived class calls this method to set the 182 // ProfileIOData, and the derived class calls this method to set the
183 // origin_bound_cert_service_ member and transfers ownership to the base 183 // server_bound_cert_service_ member and transfers ownership to the base
184 // class. 184 // class.
185 void set_origin_bound_cert_service( 185 void set_server_bound_cert_service(
186 net::OriginBoundCertService* origin_bound_cert_service) const; 186 net::ServerBoundCertService* server_bound_cert_service) const;
187 187
188 net::NetworkDelegate* network_delegate() const { 188 net::NetworkDelegate* network_delegate() const {
189 return network_delegate_.get(); 189 return network_delegate_.get();
190 } 190 }
191 191
192 net::FraudulentCertificateReporter* fraudulent_certificate_reporter() const { 192 net::FraudulentCertificateReporter* fraudulent_certificate_reporter() const {
193 return fraudulent_certificate_reporter_.get(); 193 return fraudulent_certificate_reporter_.get();
194 } 194 }
195 195
196 net::ProxyService* proxy_service() const { 196 net::ProxyService* proxy_service() const {
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 mutable BooleanPrefMember clear_local_state_on_exit_; 266 mutable BooleanPrefMember clear_local_state_on_exit_;
267 mutable BooleanPrefMember safe_browsing_enabled_; 267 mutable BooleanPrefMember safe_browsing_enabled_;
268 mutable IntegerPrefMember session_startup_pref_; 268 mutable IntegerPrefMember session_startup_pref_;
269 269
270 // Pointed to by NetworkDelegate. 270 // Pointed to by NetworkDelegate.
271 mutable scoped_ptr<policy::URLBlacklistManager> url_blacklist_manager_; 271 mutable scoped_ptr<policy::URLBlacklistManager> url_blacklist_manager_;
272 272
273 // Pointed to by URLRequestContext. 273 // Pointed to by URLRequestContext.
274 mutable scoped_ptr<ChromeURLDataManagerBackend> 274 mutable scoped_ptr<ChromeURLDataManagerBackend>
275 chrome_url_data_manager_backend_; 275 chrome_url_data_manager_backend_;
276 mutable scoped_ptr<net::OriginBoundCertService> origin_bound_cert_service_; 276 mutable scoped_ptr<net::ServerBoundCertService> server_bound_cert_service_;
277 mutable scoped_ptr<net::NetworkDelegate> network_delegate_; 277 mutable scoped_ptr<net::NetworkDelegate> network_delegate_;
278 mutable scoped_ptr<net::FraudulentCertificateReporter> 278 mutable scoped_ptr<net::FraudulentCertificateReporter>
279 fraudulent_certificate_reporter_; 279 fraudulent_certificate_reporter_;
280 mutable scoped_ptr<net::ProxyService> proxy_service_; 280 mutable scoped_ptr<net::ProxyService> proxy_service_;
281 mutable scoped_ptr<net::TransportSecurityState> transport_security_state_; 281 mutable scoped_ptr<net::TransportSecurityState> transport_security_state_;
282 mutable scoped_ptr<net::URLRequestJobFactory> job_factory_; 282 mutable scoped_ptr<net::URLRequestJobFactory> job_factory_;
283 283
284 // Pointed to by ResourceContext. 284 // Pointed to by ResourceContext.
285 285
286 // TODO(willchan): Remove from ResourceContext. 286 // TODO(willchan): Remove from ResourceContext.
(...skipping 17 matching lines...) Expand all
304 // One AppRequestContext per isolated app. 304 // One AppRequestContext per isolated app.
305 mutable AppRequestContextMap app_request_context_map_; 305 mutable AppRequestContextMap app_request_context_map_;
306 306
307 // TODO(jhawkins): Remove once crbug.com/102004 is fixed. 307 // TODO(jhawkins): Remove once crbug.com/102004 is fixed.
308 bool initialized_on_UI_thread_; 308 bool initialized_on_UI_thread_;
309 309
310 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); 310 DISALLOW_COPY_AND_ASSIGN(ProfileIOData);
311 }; 311 };
312 312
313 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ 313 #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