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

Unified Diff: chrome/browser/ui/search/search_ipc_router.cc

Issue 1200053004: Move more string_util functions to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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
« no previous file with comments | « chrome/browser/ui/omnibox/omnibox_view.cc ('k') | chrome/common/favicon/fallback_icon_url_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/search/search_ipc_router.cc
diff --git a/chrome/browser/ui/search/search_ipc_router.cc b/chrome/browser/ui/search/search_ipc_router.cc
index 1c06b1c3704a8e89f4877d9c494bd6a3133e36a8..a1b8554390f9b26114f0274c8964c1f02eb9fdf7 100644
--- a/chrome/browser/ui/search/search_ipc_router.cc
+++ b/chrome/browser/ui/search/search_ipc_router.cc
@@ -20,7 +20,7 @@ bool IsProviderValid(const base::string16& provider) {
return false;
for (base::string16::const_iterator it = provider.begin();
it != provider.end(); ++it) {
- if (!IsAsciiAlpha(*it) && !IsAsciiDigit(*it))
+ if (!base::IsAsciiAlpha(*it) && !base::IsAsciiDigit(*it))
return false;
}
return true;
« no previous file with comments | « chrome/browser/ui/omnibox/omnibox_view.cc ('k') | chrome/common/favicon/fallback_icon_url_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698