Index: net/proxy/proxy_script_decider.cc |
diff --git a/net/proxy/proxy_script_decider.cc b/net/proxy/proxy_script_decider.cc |
index 3e606a6e7bf8472c5baec685859f6e6d039d08e4..939f7af1422a413fa5fd8a140b308d04e0843af6 100644 |
--- a/net/proxy/proxy_script_decider.cc |
+++ b/net/proxy/proxy_script_decider.cc |
@@ -30,7 +30,8 @@ bool LooksLikePacScript(const base::string16& script) { |
// file not containing the string is not likely to be a PAC script. |
// |
// An exact test would have to load the script in a javascript evaluator. |
- return script.find(ASCIIToUTF16("FindProxyForURL")) != base::string16::npos; |
+ return script.find(base::ASCIIToUTF16("FindProxyForURL")) != |
+ base::string16::npos; |
} |
} |