| Index: chrome/browser/ui/views/local_storage_info_view.cc
|
| diff --git a/chrome/browser/ui/views/local_storage_info_view.cc b/chrome/browser/ui/views/local_storage_info_view.cc
|
| index 8bbc5804566c454eb62379ce649fe972d7640542..21327f4615222a82463ed5566c1ee0a0ec526215 100644
|
| --- a/chrome/browser/ui/views/local_storage_info_view.cc
|
| +++ b/chrome/browser/ui/views/local_storage_info_view.cc
|
| @@ -76,15 +76,15 @@ void LocalStorageInfoView::Init() {
|
| kLocalStorageInfoViewBorderSize, border_color);
|
| set_border(border);
|
|
|
| - views::Label* origin_label = new views::Label(UTF16ToWide(
|
| - l10n_util::GetStringUTF16(IDS_COOKIES_LOCAL_STORAGE_ORIGIN_LABEL)));
|
| + views::Label* origin_label = new views::Label(
|
| + l10n_util::GetStringUTF16(IDS_COOKIES_LOCAL_STORAGE_ORIGIN_LABEL));
|
| origin_value_field_ = new views::Textfield;
|
| - views::Label* size_label = new views::Label(UTF16ToWide(
|
| - l10n_util::GetStringUTF16(IDS_COOKIES_LOCAL_STORAGE_SIZE_ON_DISK_LABEL)));
|
| + views::Label* size_label = new views::Label(
|
| + l10n_util::GetStringUTF16(IDS_COOKIES_LOCAL_STORAGE_SIZE_ON_DISK_LABEL));
|
| size_value_field_ = new views::Textfield;
|
| - views::Label* last_modified_label = new views::Label(UTF16ToWide(
|
| + views::Label* last_modified_label = new views::Label(
|
| l10n_util::GetStringUTF16(
|
| - IDS_COOKIES_LOCAL_STORAGE_LAST_MODIFIED_LABEL)));
|
| + IDS_COOKIES_LOCAL_STORAGE_LAST_MODIFIED_LABEL));
|
| last_modified_value_field_ = new views::Textfield;
|
|
|
| using views::GridLayout;
|
|
|