Index: chrome/browser/extensions/default_apps.cc |
diff --git a/chrome/browser/extensions/default_apps.cc b/chrome/browser/extensions/default_apps.cc |
index 3b42e970206642bf2db203588aca2d4e215f8d16..c8078e4bafbd9df060b2544e0d9546eea90c5e73 100644 |
--- a/chrome/browser/extensions/default_apps.cc |
+++ b/chrome/browser/extensions/default_apps.cc |
@@ -37,7 +37,7 @@ bool IsLocaleSupported() { |
const std::string& locale = g_browser_process->GetApplicationLocale(); |
static const char* const unsupported_locales[] = {"CN", "TR", "IR"}; |
for (size_t i = 0; i < arraysize(unsupported_locales); ++i) { |
- if (EndsWith(locale, unsupported_locales[i], false)) { |
+ if (base::EndsWith(locale, unsupported_locales[i], false)) { |
return false; |
} |
} |