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

Unified Diff: chrome/browser/ui/app_list/search/term_break_iterator.cc

Issue 113403006: Update some uses of char16 to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/app_list/search/term_break_iterator.h ('k') | chrome/browser/ui/gtk/gtk_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/app_list/search/term_break_iterator.cc
diff --git a/chrome/browser/ui/app_list/search/term_break_iterator.cc b/chrome/browser/ui/app_list/search/term_break_iterator.cc
index 5c7d44d1dc5ca64064f6040c0bd63a183add6d4f..5ace7dcc7733cdad549e3aa1899ed34ad9111293 100644
--- a/chrome/browser/ui/app_list/search/term_break_iterator.cc
+++ b/chrome/browser/ui/app_list/search/term_break_iterator.cc
@@ -53,7 +53,7 @@ const base::string16 TermBreakIterator::GetCurrentTerm() const {
return word_.substr(prev_, pos_ - prev_);
}
-TermBreakIterator::State TermBreakIterator::GetNewState(char16 ch) {
+TermBreakIterator::State TermBreakIterator::GetNewState(base::char16 ch) {
if (IsAsciiDigit(ch) || ch == '.' || ch == ',')
return STATE_NUMBER;
« no previous file with comments | « chrome/browser/ui/app_list/search/term_break_iterator.h ('k') | chrome/browser/ui/gtk/gtk_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698