Index: net/url_request/url_request_context_storage.h |
diff --git a/net/url_request/url_request_context_storage.h b/net/url_request/url_request_context_storage.h |
index 9c25f3e44e5373c3aa5ca2512f7c9e0387f3f3db..83b77e657e616349b06391d95fde979b85793225 100644 |
--- a/net/url_request/url_request_context_storage.h |
+++ b/net/url_request/url_request_context_storage.h |
@@ -23,7 +23,7 @@ class HttpTransactionFactory; |
class HttpUserAgentSettings; |
class NetLog; |
class NetworkDelegate; |
-class ServerBoundCertService; |
+class ChannelIDService; |
wtc
2014/07/01 19:50:57
List in alphabetical order.
Ryan Hamilton
2014/07/21 19:12:13
Done.
|
class ProxyService; |
class SSLConfigService; |
class TransportSecurityState; |
@@ -47,8 +47,8 @@ class NET_EXPORT URLRequestContextStorage { |
void set_net_log(NetLog* net_log); |
void set_host_resolver(scoped_ptr<HostResolver> host_resolver); |
void set_cert_verifier(CertVerifier* cert_verifier); |
- void set_server_bound_cert_service( |
- ServerBoundCertService* server_bound_cert_service); |
+ void set_channel_id_service( |
+ ChannelIDService* channel_id_service); |
void set_fraudulent_certificate_reporter( |
FraudulentCertificateReporter* fraudulent_certificate_reporter); |
void set_http_auth_handler_factory( |
@@ -78,8 +78,8 @@ class NET_EXPORT URLRequestContextStorage { |
scoped_ptr<NetLog> net_log_; |
scoped_ptr<HostResolver> host_resolver_; |
scoped_ptr<CertVerifier> cert_verifier_; |
- // The ServerBoundCertService must outlive the HttpTransactionFactory. |
- scoped_ptr<ServerBoundCertService> server_bound_cert_service_; |
+ // The ChannelIDService must outlive the HttpTransactionFactory. |
+ scoped_ptr<ChannelIDService> channel_id_service_; |
scoped_ptr<FraudulentCertificateReporter> fraudulent_certificate_reporter_; |
scoped_ptr<HttpAuthHandlerFactory> http_auth_handler_factory_; |
scoped_ptr<ProxyService> proxy_service_; |