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

Unified Diff: chromeos/dbus/dbus_client_bundle.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: chromeos/dbus/dbus_client_bundle.cc
diff --git a/chromeos/dbus/dbus_client_bundle.cc b/chromeos/dbus/dbus_client_bundle.cc
index 3296736ea98306c7eb543bd07a0a1b04c49e53b6..a18a611d3b6bf33f1971e2a399917a04ead63561 100644
--- a/chromeos/dbus/dbus_client_bundle.cc
+++ b/chromeos/dbus/dbus_client_bundle.cc
@@ -141,7 +141,8 @@ const struct {
DBusClientBundle::DBusClientType GetDBusClientType(
const std::string& client_type_name) {
for (size_t i = 0; i < arraysize(client_type_map); i++) {
- if (LowerCaseEqualsASCII(client_type_name, client_type_map[i].param_name))
+ if (base::LowerCaseEqualsASCII(client_type_name,
+ client_type_map[i].param_name))
return client_type_map[i].client_type;
}
return DBusClientBundle::NO_CLIENT;
« no previous file with comments | « chrome/utility/importer/ie_importer_win.cc ('k') | components/autofill/content/browser/wallet/form_field_error.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698