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

Unified Diff: chrome/browser/profiles/profile_io_data.h

Issue 356713005: Rename ServerBoundCert => ChannelID to reflect the current name (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix cookies_list.js Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
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 ffd1d79f23448872952455a3cb909d8cf6ad2fa4..ef05f141849a315e826609bb740e658d68cf7b96 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;
@@ -361,12 +361,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();
@@ -574,7 +574,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_;

Powered by Google App Engine
This is Rietveld 408576698