Index: chrome/browser/net/firefox_proxy_settings.cc |
diff --git a/chrome/browser/net/firefox_proxy_settings.cc b/chrome/browser/net/firefox_proxy_settings.cc |
index bc3b04fdaeaaf88f169b8905543d8cb2694899d9..ba7fe94f87053b115c3d2fa0cca55e069ccc9401 100644 |
--- a/chrome/browser/net/firefox_proxy_settings.cc |
+++ b/chrome/browser/net/firefox_proxy_settings.cc |
@@ -118,7 +118,7 @@ bool ParsePrefFile(const base::FilePath& pref_file, |
value = value.substr(1, value.size() - 2); |
// ValueString only accept valid UTF-8. Simply ignore that entry if it is |
// not UTF-8. |
- if (IsStringUTF8(value)) |
+ if (base::IsStringUTF8(value)) |
prefs->SetString(key, value); |
else |
VLOG(1) << "Non UTF8 value for key " << key << ", ignored."; |