| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc
|
| index 6beee3cf6ce6f509c9b0ebae0bf41df0b7958cbc..08cf86f13f0c6dc092fcf9397ab4e9538a3f2365 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc
|
| @@ -806,7 +806,7 @@ bool DataReductionProxyConfig::MaybeDisableIfVPN() {
|
| 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(
|
| + if (base::LowerCaseEqualsASCII(
|
| interface_name.begin(),
|
| interface_name.begin() + vpn_interface_name_prefix.size(),
|
| vpn_interface_name_prefix.c_str())) {
|
|
|