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

Unified Diff: ui/views/examples/table_example.cc

Issue 176843022: Move UTF16ToASCII, remove WideToASCII. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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/views/controls/tree/tree_view_unittest.cc ('k') | webkit/browser/database/database_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/examples/table_example.cc
diff --git a/ui/views/examples/table_example.cc b/ui/views/examples/table_example.cc
index eb1a29a536c0ea5cdcfd806c8cf393bba36be467..5c9eebfd2ed2a05ae7feaa656bda1b6051fbb444 100644
--- a/ui/views/examples/table_example.cc
+++ b/ui/views/examples/table_example.cc
@@ -145,14 +145,14 @@ void TableExample::GetGroupRange(int model_index, GroupRange* range) {
void TableExample::OnSelectionChanged() {
PrintStatus("Selected: %s",
- UTF16ToASCII(GetText(table_->selection_model().active(),
- 0)).c_str());
+ base::UTF16ToASCII(GetText(table_->selection_model().active(),
+ 0)).c_str());
}
void TableExample::OnDoubleClick() {
PrintStatus("Double Click: %s",
- UTF16ToASCII(GetText(table_->selection_model().active(),
- 0)).c_str());
+ base::UTF16ToASCII(GetText(table_->selection_model().active(),
+ 0)).c_str());
}
void TableExample::OnMiddleClick() {}
« no previous file with comments | « ui/views/controls/tree/tree_view_unittest.cc ('k') | webkit/browser/database/database_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698