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

Unified Diff: chrome/browser/ui/views/download/download_shelf_view.cc

Issue 8142026: Revert 104076 - Change std::wstring to string16 for views::Link (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 2 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: chrome/browser/ui/views/download/download_shelf_view.cc
===================================================================
--- chrome/browser/ui/views/download/download_shelf_view.cc (revision 104083)
+++ chrome/browser/ui/views/download/download_shelf_view.cc (working copy)
@@ -5,7 +5,6 @@
#include "chrome/browser/ui/views/download/download_shelf_view.h"
#include <algorithm>
-#include <vector>
#include "base/logging.h"
#include "base/utf_string_conversions.h"
@@ -107,7 +106,7 @@
AddChildView(arrow_image_);
show_all_view_ = new views::Link(
- l10n_util::GetStringUTF16(IDS_SHOW_ALL_DOWNLOADS));
+ UTF16ToWide(l10n_util::GetStringUTF16(IDS_SHOW_ALL_DOWNLOADS)));
show_all_view_->set_listener(this);
AddChildView(show_all_view_);
« no previous file with comments | « chrome/browser/ui/views/download/download_item_view.cc ('k') | chrome/browser/ui/views/edit_search_engine_dialog.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698