Index: net/proxy/proxy_config_service_android.cc |
diff --git a/net/proxy/proxy_config_service_android.cc b/net/proxy/proxy_config_service_android.cc |
index 088621da83d6183bdbe7e1bf1e769732382a9b9f..25276e89973772f9a6767bd6a89dab2289b1fe6e 100644 |
--- a/net/proxy/proxy_config_service_android.cc |
+++ b/net/proxy/proxy_config_service_android.cc |
@@ -106,7 +106,7 @@ void AddBypassRules(const std::string& scheme, |
while (tokenizer.GetNext()) { |
std::string token = tokenizer.token(); |
std::string pattern; |
- TrimWhitespaceASCII(token, TRIM_ALL, &pattern); |
+ base::TrimWhitespaceASCII(token, base::TRIM_ALL, &pattern); |
if (pattern.empty()) |
continue; |
// '?' is not one of the specified pattern characters above. |