From 611b36719ba5f4aadd4c792c573b743aa5f31a26 Mon Sep 17 00:00:00 2001 From: deepak1556 Date: Thu, 21 Feb 2019 20:23:12 +0530 Subject: [PATCH] Remove channel_id_path from NetworkContextParams (and other related places) https://chromium-review.googlesource.com/c/chromium/src/+/1435678 --- atom/browser/net/url_request_context_getter.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/atom/browser/net/url_request_context_getter.cc b/atom/browser/net/url_request_context_getter.cc index 705f1f2b85d6..6454f42a1c81 100644 --- a/atom/browser/net/url_request_context_getter.cc +++ b/atom/browser/net/url_request_context_getter.cc @@ -177,8 +177,6 @@ URLRequestContextGetter::Handle::CreateNetworkContextParams() { base_path.Append(chrome::kNetworkPersistentStateFilename); network_context_params->cookie_path = base_path.Append(chrome::kCookieFilename); - network_context_params->channel_id_path = - base_path.Append(chrome::kChannelIDFilename); network_context_params->restore_old_session_cookies = false; network_context_params->persist_session_cookies = false; // TODO(deepak1556): Matches the existing behavior https://git.io/fxHMl,