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

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

Issue 1223153003: Move JoinString to the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: windows Created 5 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: components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator.cc
index 9bfd9bd8fe5e00a106e84e0776fcac5cc0768c45..f39d95e837b7600693e40f1dcde7695c7ef6e571 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator.cc
@@ -63,7 +63,7 @@ void DataReductionProxyConfigurator::Enable(
}
config.proxy_rules().bypass_rules.ParseFromString(
- JoinString(bypass_rules_, ", "));
+ base::JoinString(bypass_rules_, ", "));
// The ID is set to a bogus value. It cannot be left uninitialized, else the
// config will return invalid.
net::ProxyConfig::ID unused_id = 1;

Powered by Google App Engine
This is Rietveld 408576698