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

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.cc

Issue 2072233004: Moving utility methods in data_reduction_proxy to util namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.cc
index e72d249aa3e6a73af14d6fc71c3909d8c39f94e3..a9edb9a3cba6fa310b29e819e6cc0be794d4cdff 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.cc
@@ -146,21 +146,21 @@ DataReductionProxyConfigServiceClient::DataReductionProxyConfigServiceClient(
net::NetLog* net_log,
ConfigStorer config_storer)
: params_(std::move(params)),
request_options_(request_options),
config_values_(config_values),
config_(config),
event_creator_(event_creator),
net_log_(net_log),
config_storer_(config_storer),
backoff_entry_(&backoff_policy),
- config_service_url_(AddApiKeyToUrl(params::GetConfigServiceURL())),
+ config_service_url_(util::AddApiKeyToUrl(params::GetConfigServiceURL())),
enabled_(false),
remote_config_applied_(false),
url_request_context_getter_(nullptr),
#if defined(OS_ANDROID)
foreground_fetch_pending_(false),
#endif
previous_request_failed_authentication_(false),
failed_attempts_before_success_(0),
quic_enabled_(false) {
DCHECK(request_options);

Powered by Google App Engine
This is Rietveld 408576698