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

Unified Diff: chrome/browser/chromeos/input_method/candidate_window_view.cc

Issue 105193002: Replace string16 with base::string16. (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
Index: chrome/browser/chromeos/input_method/candidate_window_view.cc
diff --git a/chrome/browser/chromeos/input_method/candidate_window_view.cc b/chrome/browser/chromeos/input_method/candidate_window_view.cc
index fcf8a0ba2fd81feba10de163c6386820bdfeb3b5..a9a02de9a13baa57eb802e1d34341eb1edcd1864 100644
--- a/chrome/browser/chromeos/input_method/candidate_window_view.cc
+++ b/chrome/browser/chromeos/input_method/candidate_window_view.cc
@@ -450,15 +450,15 @@ void CandidateView::Init(int shortcut_column_width,
UpdateLabelBackgroundColors();
}
-void CandidateView::SetCandidateText(const string16& text) {
+void CandidateView::SetCandidateText(const base::string16& text) {
candidate_label_->SetText(text);
}
-void CandidateView::SetShortcutText(const string16& text) {
+void CandidateView::SetShortcutText(const base::string16& text) {
shortcut_label_->SetText(text);
}
-void CandidateView::SetAnnotationText(const string16& text) {
+void CandidateView::SetAnnotationText(const base::string16& text) {
annotation_label_->SetText(text);
}
« no previous file with comments | « chrome/browser/chromeos/input_method/candidate_view.h ('k') | chrome/browser/chromeos/input_method/infolist_window_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698