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

Unified Diff: chrome/browser/ui/views/local_storage_set_item_info_view.cc

Issue 8113031: Change std::wstring to string16 for views::Label and views::Link (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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/local_storage_set_item_info_view.cc
diff --git a/chrome/browser/ui/views/local_storage_set_item_info_view.cc b/chrome/browser/ui/views/local_storage_set_item_info_view.cc
index 30bdbe59013b1d9d59db626c1c4ad9412eb47924..93a1c713b44e2d660e0278827ed2ed47f9c9323f 100644
--- a/chrome/browser/ui/views/local_storage_set_item_info_view.cc
+++ b/chrome/browser/ui/views/local_storage_set_item_info_view.cc
@@ -74,14 +74,14 @@ void LocalStorageSetItemInfoView::Init() {
// TODO(jorlow): These strings are not quite right, but we're post-freeze.
// http://crbug.com/68688
- views::Label* host_label = new views::Label(UTF16ToWide(
- l10n_util::GetStringUTF16(IDS_COOKIES_COOKIE_DOMAIN_LABEL)));
+ views::Label* host_label = new views::Label(
+ l10n_util::GetStringUTF16(IDS_COOKIES_COOKIE_DOMAIN_LABEL));
host_value_field_ = new views::Textfield;
- views::Label* key_label = new views::Label(UTF16ToWide(
- l10n_util::GetStringUTF16(IDS_COOKIES_LOCAL_STORAGE_KEY_LABEL)));
+ views::Label* key_label = new views::Label(
+ l10n_util::GetStringUTF16(IDS_COOKIES_LOCAL_STORAGE_KEY_LABEL));
key_value_field_ = new views::Textfield;
- views::Label* value_label = new views::Label(UTF16ToWide(
- l10n_util::GetStringUTF16(IDS_COOKIES_LOCAL_STORAGE_VALUE_LABEL)));
+ views::Label* value_label = new views::Label(
+ l10n_util::GetStringUTF16(IDS_COOKIES_LOCAL_STORAGE_VALUE_LABEL));
value_value_field_ = new views::Textfield;
using views::GridLayout;
« no previous file with comments | « chrome/browser/ui/views/local_storage_info_view.cc ('k') | chrome/browser/ui/views/location_bar/icon_label_bubble_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698