summaryrefslogtreecommitdiffstats
path: root/chrome/browser/net/firefox_proxy_settings.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/net/firefox_proxy_settings.cc')
-rw-r--r--chrome/browser/net/firefox_proxy_settings.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/net/firefox_proxy_settings.cc b/chrome/browser/net/firefox_proxy_settings.cc
index bc3b04f..ba7fe94 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.";