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

Unified Diff: chrome/browser/ui/app_list/search/webstore/webstore_provider.cc

Issue 448143008: Move StringToUpperASCII and LowerCaseEqualsASCII to the base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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: chrome/browser/ui/app_list/search/webstore/webstore_provider.cc
diff --git a/chrome/browser/ui/app_list/search/webstore/webstore_provider.cc b/chrome/browser/ui/app_list/search/webstore/webstore_provider.cc
index da9a25f25bff19b0176fff515d81c1ea4a960666..1492ec88dd8e0dbb634354d2da4f203521b0aa3a 100644
--- a/chrome/browser/ui/app_list/search/webstore/webstore_provider.cc
+++ b/chrome/browser/ui/app_list/search/webstore/webstore_provider.cc
@@ -37,13 +37,13 @@ const char kLegacyPackagedAppType[] = "legacy_packaged_app";
// Converts the item type string from the web store to an
// extensions::Manifest::Type.
extensions::Manifest::Type ParseItemType(const std::string& item_type_str) {
- if (LowerCaseEqualsASCII(item_type_str, kPlatformAppType))
+ if (base::LowerCaseEqualsASCII(item_type_str, kPlatformAppType))
return extensions::Manifest::TYPE_PLATFORM_APP;
- if (LowerCaseEqualsASCII(item_type_str, kLegacyPackagedAppType))
+ if (base::LowerCaseEqualsASCII(item_type_str, kLegacyPackagedAppType))
return extensions::Manifest::TYPE_LEGACY_PACKAGED_APP;
- if (LowerCaseEqualsASCII(item_type_str, kHostedAppType))
+ if (base::LowerCaseEqualsASCII(item_type_str, kHostedAppType))
return extensions::Manifest::TYPE_HOSTED_APP;
return extensions::Manifest::TYPE_UNKNOWN;

Powered by Google App Engine
This is Rietveld 408576698