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

Unified Diff: ui/base/ime/candidate_window.h

Issue 162723003: Migrate CandidateWindow::Entry to string16. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix browsertest compilation Created 6 years, 10 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: ui/base/ime/candidate_window.h
diff --git a/ui/base/ime/candidate_window.h b/ui/base/ime/candidate_window.h
index f4f38518036c20ca61cd738481a560549567afe2..6ae6dd8955add20e280c6317ad8f7dbd6d36798c 100644
--- a/ui/base/ime/candidate_window.h
+++ b/ui/base/ime/candidate_window.h
@@ -41,11 +41,11 @@ class UI_BASE_EXPORT CandidateWindow {
struct UI_BASE_EXPORT Entry {
Entry();
virtual ~Entry();
- std::string value;
- std::string label;
- std::string annotation;
- std::string description_title;
- std::string description_body;
+ base::string16 value;
+ base::string16 label;
+ base::string16 annotation;
+ base::string16 description_title;
+ base::string16 description_body;
};
CandidateWindow();
« no previous file with comments | « chrome/browser/chromeos/input_method/input_method_engine_browsertests.cc ('k') | ui/base/ime/candidate_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698