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

Unified Diff: net/url_request/url_request_context.cc

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.cc
diff --git a/net/url_request/url_request_context.cc b/net/url_request/url_request_context.cc
index 3a9f69de4fa248d82c009d4ecbbf98601a6acb09..7f4e7996ed64363690d3674817a08f982a64c20f 100644
--- a/net/url_request/url_request_context.cc
+++ b/net/url_request/url_request_context.cc
@@ -20,7 +20,7 @@ URLRequestContext::URLRequestContext()
: net_log_(NULL),
host_resolver_(NULL),
cert_verifier_(NULL),
- server_bound_cert_service_(NULL),
+ channel_id_service_(NULL),
fraudulent_certificate_reporter_(NULL),
http_auth_handler_factory_(NULL),
proxy_service_(NULL),
@@ -44,7 +44,7 @@ void URLRequestContext::CopyFrom(const URLRequestContext* other) {
set_net_log(other->net_log_);
set_host_resolver(other->host_resolver_);
set_cert_verifier(other->cert_verifier_);
- set_server_bound_cert_service(other->server_bound_cert_service_);
+ set_channel_id_service(other->channel_id_service_);
set_fraudulent_certificate_reporter(other->fraudulent_certificate_reporter_);
set_http_auth_handler_factory(other->http_auth_handler_factory_);
set_proxy_service(other->proxy_service_);

Powered by Google App Engine
This is Rietveld 408576698