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

Unified Diff: ui/app_list/search/term_break_iterator.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 | « ui/accessibility/ax_text_utils.cc ('k') | ui/base/accelerators/accelerator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/search/term_break_iterator.cc
diff --git a/ui/app_list/search/term_break_iterator.cc b/ui/app_list/search/term_break_iterator.cc
index 54a1c366630c2e63cbab6606c93faf558ce88403..233a8799d9834e4b1613e69a8f8fbddc7a9cb7f5 100644
--- a/ui/app_list/search/term_break_iterator.cc
+++ b/ui/app_list/search/term_break_iterator.cc
@@ -54,7 +54,7 @@ const base::string16 TermBreakIterator::GetCurrentTerm() const {
}
TermBreakIterator::State TermBreakIterator::GetNewState(base::char16 ch) {
- if (IsAsciiDigit(ch) || ch == '.' || ch == ',')
+ if (base::IsAsciiDigit(ch) || ch == '.' || ch == ',')
return STATE_NUMBER;
const bool is_upper = !!u_isUUppercase(ch);
« no previous file with comments | « ui/accessibility/ax_text_utils.cc ('k') | ui/base/accelerators/accelerator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698