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

Unified Diff: net/url_request/url_request_context_builder.cc

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: net/url_request/url_request_context_builder.cc
diff --git a/net/url_request/url_request_context_builder.cc b/net/url_request/url_request_context_builder.cc
index 93f5b1c0b74ba33ade0070726bc0a1061ea97d5d..c876be142a3ae9975fa5e9b8bb66c6356e9935d0 100644
--- a/net/url_request/url_request_context_builder.cc
+++ b/net/url_request/url_request_context_builder.cc
@@ -302,8 +302,8 @@ URLRequestContext* URLRequestContextBuilder::Build() {
HttpTransactionFactory* http_transaction_factory = NULL;
if (http_cache_enabled_) {
- network_session_params.server_bound_cert_service =
- context->server_bound_cert_service();
+ network_session_params.channel_id_service =
+ context->channel_id_service();
HttpCache::BackendFactory* http_cache_backend = NULL;
if (http_cache_params_.type == HttpCacheParams::DISK) {
http_cache_backend = new HttpCache::DefaultBackend(

Powered by Google App Engine
This is Rietveld 408576698