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

Unified Diff: chrome/browser/gtk/keyword_editor_view_unittest.cc

Issue 6044007: Remove wstring from TableModel.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 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/gtk/keyword_editor_view_unittest.cc
===================================================================
--- chrome/browser/gtk/keyword_editor_view_unittest.cc (revision 70272)
+++ chrome/browser/gtk/keyword_editor_view_unittest.cc (working copy)
@@ -68,9 +68,9 @@
KeywordEditorView::COL_TITLE, &name,
KeywordEditorView::COL_IS_HEADER, &is_header,
-1);
- if (name && WideToUTF8(groups[0].title) == name)
+ if (name && UTF16ToUTF8(groups[0].title) == name)
parts.push_back("!");
- else if (name && WideToUTF8(groups[1].title) == name)
+ else if (name && UTF16ToUTF8(groups[1].title) == name)
parts.push_back("@");
else if (is_header)
parts.push_back("_");

Powered by Google App Engine
This is Rietveld 408576698