Chromium Code Reviews| Index: chrome/browser/io_thread.h |
| diff --git a/chrome/browser/io_thread.h b/chrome/browser/io_thread.h |
| index ca817394e8bc1f70737a68e7f1c24e5a117e1f9b..27e1bcbcf2c57e8770738c2858236de0c27e34ca 100644 |
| --- a/chrome/browser/io_thread.h |
| +++ b/chrome/browser/io_thread.h |
| @@ -55,7 +55,7 @@ class HttpServerProperties; |
| class HttpTransactionFactory; |
| class HttpUserAgentSettings; |
| class NetworkDelegate; |
| -class ServerBoundCertService; |
| +class ChannelIDService; |
|
wtc
2014/07/01 19:50:50
List in alphabetical order.
Ryan Hamilton
2014/07/21 19:12:06
Done.
|
| class ProxyConfigService; |
| class ProxyService; |
| class SSLConfigService; |
| @@ -120,8 +120,8 @@ class IOThread : public content::BrowserThreadDelegate { |
| scoped_ptr<net::NetworkDelegate> system_network_delegate; |
| scoped_ptr<net::HostResolver> host_resolver; |
| scoped_ptr<net::CertVerifier> cert_verifier; |
| - // The ServerBoundCertService must outlive the HttpTransactionFactory. |
| - scoped_ptr<net::ServerBoundCertService> system_server_bound_cert_service; |
| + // The ChannelIDService must outlive the HttpTransactionFactory. |
| + scoped_ptr<net::ChannelIDService> system_channel_id_service; |
| // This TransportSecurityState doesn't load or save any state. It's only |
| // used to enforce pinning for system requests and will only use built-in |
| // pins. |
| @@ -151,7 +151,7 @@ class IOThread : public content::BrowserThreadDelegate { |
| scoped_ptr<net::URLRequestJobFactory> system_url_request_job_factory; |
| scoped_ptr<net::URLRequestContext> system_request_context; |
| SystemRequestContextLeakChecker system_request_context_leak_checker; |
| - // |system_cookie_store| and |system_server_bound_cert_service| are shared |
| + // |system_cookie_store| and |system_channel_id_service| are shared |
| // between |proxy_script_fetcher_context| and |system_request_context|. |
| scoped_refptr<net::CookieStore> system_cookie_store; |
| scoped_refptr<extensions::EventRouterForwarder> |