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 9865ad18882c22e87ad048f813fa990b1d069427..665038d1bede55ae35a54ba35f3a0a062cd96afc 100644 |
--- a/chrome/browser/profiles/profile_io_data.h |
+++ b/chrome/browser/profiles/profile_io_data.h |
@@ -33,7 +33,7 @@ namespace net { |
class CookieStore; |
class FraudulentCertificateReporter; |
class HttpTransactionFactory; |
-class OriginBoundCertService; |
+class ServerBoundCertService; |
class ProxyConfigService; |
class ProxyService; |
class SSLConfigService; |
@@ -178,12 +178,12 @@ class ProfileIOData { |
return chrome_url_data_manager_backend_.get(); |
} |
- // An OriginBoundCertService object is created by a derived class of |
+ // An ServerBoundCertService object is created by a derived class of |
// ProfileIOData, and the derived class calls this method to set the |
- // origin_bound_cert_service_ member and transfers ownership to the base |
+ // server_bound_cert_service_ member and transfers ownership to the base |
// class. |
- void set_origin_bound_cert_service( |
- net::OriginBoundCertService* origin_bound_cert_service) const; |
+ void set_server_bound_cert_service( |
+ net::ServerBoundCertService* server_bound_cert_service) const; |
net::NetworkDelegate* network_delegate() const { |
return network_delegate_.get(); |
@@ -273,7 +273,7 @@ class ProfileIOData { |
// Pointed to by URLRequestContext. |
mutable scoped_ptr<ChromeURLDataManagerBackend> |
chrome_url_data_manager_backend_; |
- mutable scoped_ptr<net::OriginBoundCertService> origin_bound_cert_service_; |
+ mutable scoped_ptr<net::ServerBoundCertService> server_bound_cert_service_; |
mutable scoped_ptr<net::NetworkDelegate> network_delegate_; |
mutable scoped_ptr<net::FraudulentCertificateReporter> |
fraudulent_certificate_reporter_; |