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

Unified Diff: components/data_reduction_proxy/browser/data_reduction_proxy_settings.cc

Issue 448143008: Move StringToUpperASCII and LowerCaseEqualsASCII to the base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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/browser/data_reduction_proxy_settings.cc
diff --git a/components/data_reduction_proxy/browser/data_reduction_proxy_settings.cc b/components/data_reduction_proxy/browser/data_reduction_proxy_settings.cc
index 1e20219260b244bb3959d90ba4c105d2fa3bbacd..2079c719dfcd425070ec2b073504f5b170ab4590 100644
--- a/components/data_reduction_proxy/browser/data_reduction_proxy_settings.cc
+++ b/components/data_reduction_proxy/browser/data_reduction_proxy_settings.cc
@@ -585,10 +585,10 @@ bool DataReductionProxySettings::DisableIfVPN() {
const std::string vpn_interface_name_prefix = "tun";
for (size_t i = 0; i < network_interfaces.size(); ++i) {
std::string interface_name = network_interfaces[i].name;
- if (LowerCaseEqualsASCII(
- interface_name.begin(),
- interface_name.begin() + vpn_interface_name_prefix.size(),
- vpn_interface_name_prefix.c_str())) {
+ if (base::LowerCaseEqualsASCII(
+ interface_name.begin(),
+ interface_name.begin() + vpn_interface_name_prefix.size(),
+ vpn_interface_name_prefix.c_str())) {
SetProxyConfigs(false,
IsDataReductionProxyAlternativeEnabled(),
false,

Powered by Google App Engine
This is Rietveld 408576698