Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(852)

Unified Diff: ui/base/l10n/l10n_util_win.cc

Issue 1172753003: Move LowerCaseEqualsASCII to base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/base/l10n/l10n_util_win.cc
diff --git a/ui/base/l10n/l10n_util_win.cc b/ui/base/l10n/l10n_util_win.cc
index 4e2f7f497735f2c1957cf1f0763c6d35f016af90..bfe12a771a68aed870479bf8dc6d8bf0a22a790b 100644
--- a/ui/base/l10n/l10n_util_win.cc
+++ b/ui/base/l10n/l10n_util_win.cc
@@ -111,7 +111,8 @@ bool IsLocaleSupportedByOS(const std::string& locale) {
// 'Abyssinica SIL' in the resource bundle to use in the UI. Check
// for its presence to determine whether or not to support Amharic UI on XP.
return (base::win::GetVersion() >= base::win::VERSION_VISTA ||
- !LowerCaseEqualsASCII(locale, "am") || IsFontPresent(L"Abyssinica SIL"));
+ !base::LowerCaseEqualsASCII(locale, "am") ||
+ IsFontPresent(L"Abyssinica SIL"));
}
bool NeedOverrideDefaultUIFont(base::string16* override_font_family,
« no previous file with comments | « ui/base/l10n/l10n_util_posix.cc ('k') | ui/events/ozone/evdev/libgestures_glue/gesture_property_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698