| Index: chrome/browser/ui/views/indexed_db_info_view.cc
|
| diff --git a/chrome/browser/ui/views/indexed_db_info_view.cc b/chrome/browser/ui/views/indexed_db_info_view.cc
|
| index a617c63212eb39b4fe08ea95f5e63bd240f944cd..1cc7f313d2d661e2d738afd8b7769e06a0b9fecc 100644
|
| --- a/chrome/browser/ui/views/indexed_db_info_view.cc
|
| +++ b/chrome/browser/ui/views/indexed_db_info_view.cc
|
| @@ -75,15 +75,15 @@ void IndexedDBInfoView::Init() {
|
| kIndexedDBInfoViewBorderSize, 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;
|
|
|