| Index: chrome/browser/profiles/profile_io_data.h
|
| diff --git a/chrome/browser/profiles/profile_io_data.h b/chrome/browser/profiles/profile_io_data.h
|
| index 690c6090712563fa8851549d5136cde33dc194de..f69ac7dd611114ed836fb0722acfa7e74b7770b7 100644
|
| --- a/chrome/browser/profiles/profile_io_data.h
|
| +++ b/chrome/browser/profiles/profile_io_data.h
|
| @@ -45,12 +45,12 @@ class InfoMap;
|
| }
|
|
|
| namespace net {
|
| +class ChannelIDService;
|
| class CookieStore;
|
| class FraudulentCertificateReporter;
|
| class FtpTransactionFactory;
|
| class HttpServerProperties;
|
| class HttpTransactionFactory;
|
| -class ServerBoundCertService;
|
| class ProxyConfigService;
|
| class ProxyService;
|
| class SSLConfigService;
|
| @@ -351,12 +351,12 @@ class ProfileIOData {
|
| // Called when the profile is destroyed.
|
| void ShutdownOnUIThread();
|
|
|
| - // A ServerBoundCertService object is created by a derived class of
|
| + // A ChannelIDService object is created by a derived class of
|
| // ProfileIOData, and the derived class calls this method to set the
|
| - // server_bound_cert_service_ member and transfers ownership to the base
|
| + // channel_id_service_ member and transfers ownership to the base
|
| // class.
|
| - void set_server_bound_cert_service(
|
| - net::ServerBoundCertService* server_bound_cert_service) const;
|
| + void set_channel_id_service(
|
| + net::ChannelIDService* channel_id_service) const;
|
|
|
| ChromeNetworkDelegate* network_delegate() const {
|
| return network_delegate_.get();
|
| @@ -562,7 +562,7 @@ class ProfileIOData {
|
|
|
| // Pointed to by URLRequestContext.
|
| mutable scoped_refptr<extensions::InfoMap> extension_info_map_;
|
| - mutable scoped_ptr<net::ServerBoundCertService> server_bound_cert_service_;
|
| + mutable scoped_ptr<net::ChannelIDService> channel_id_service_;
|
| mutable scoped_ptr<ChromeNetworkDelegate> network_delegate_;
|
| mutable scoped_ptr<net::FraudulentCertificateReporter>
|
| fraudulent_certificate_reporter_;
|
|
|