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

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: Rebase Created 6 years, 6 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 690c6090712563fa8851549d5136cde33dc194de..a4e070c23c5ee444f162a0412c44084df81417a8 100644
--- a/chrome/browser/profiles/profile_io_data.h
+++ b/chrome/browser/profiles/profile_io_data.h
@@ -50,7 +50,7 @@ class FraudulentCertificateReporter;
class FtpTransactionFactory;
class HttpServerProperties;
class HttpTransactionFactory;
-class ServerBoundCertService;
+class ChannelIDService;
wtc 2014/07/01 19:50:51 List in alphabetical order.
Ryan Hamilton 2014/07/21 19:12:08 Done.
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_;

Powered by Google App Engine
This is Rietveld 408576698