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

Unified Diff: net/url_request/url_request_context_storage.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: net/url_request/url_request_context_storage.h
diff --git a/net/url_request/url_request_context_storage.h b/net/url_request/url_request_context_storage.h
index 9c25f3e44e5373c3aa5ca2512f7c9e0387f3f3db..3d85ae0bc11a37412a82b879f65919ff5cec6bd6 100644
--- a/net/url_request/url_request_context_storage.h
+++ b/net/url_request/url_request_context_storage.h
@@ -13,6 +13,7 @@
namespace net {
class CertVerifier;
+class ChannelIDService;
class CookieStore;
class FraudulentCertificateReporter;
class FtpTransactionFactory;
@@ -23,7 +24,6 @@ class HttpTransactionFactory;
class HttpUserAgentSettings;
class NetLog;
class NetworkDelegate;
-class ServerBoundCertService;
class ProxyService;
class SSLConfigService;
class TransportSecurityState;
@@ -47,8 +47,8 @@ class NET_EXPORT URLRequestContextStorage {
void set_net_log(NetLog* net_log);
void set_host_resolver(scoped_ptr<HostResolver> host_resolver);
void set_cert_verifier(CertVerifier* cert_verifier);
- void set_server_bound_cert_service(
- ServerBoundCertService* server_bound_cert_service);
+ void set_channel_id_service(
+ ChannelIDService* channel_id_service);
void set_fraudulent_certificate_reporter(
FraudulentCertificateReporter* fraudulent_certificate_reporter);
void set_http_auth_handler_factory(
@@ -78,8 +78,8 @@ class NET_EXPORT URLRequestContextStorage {
scoped_ptr<NetLog> net_log_;
scoped_ptr<HostResolver> host_resolver_;
scoped_ptr<CertVerifier> cert_verifier_;
- // The ServerBoundCertService must outlive the HttpTransactionFactory.
- scoped_ptr<ServerBoundCertService> server_bound_cert_service_;
+ // The ChannelIDService must outlive the HttpTransactionFactory.
+ scoped_ptr<ChannelIDService> channel_id_service_;
scoped_ptr<FraudulentCertificateReporter> fraudulent_certificate_reporter_;
scoped_ptr<HttpAuthHandlerFactory> http_auth_handler_factory_;
scoped_ptr<ProxyService> proxy_service_;

Powered by Google App Engine
This is Rietveld 408576698