| Index: chrome/browser/ui/views/local_storage_info_view.cc
|
| ===================================================================
|
| --- chrome/browser/ui/views/local_storage_info_view.cc (revision 104083)
|
| +++ chrome/browser/ui/views/local_storage_info_view.cc (working copy)
|
| @@ -76,15 +76,15 @@
|
| kLocalStorageInfoViewBorderSize, border_color);
|
| set_border(border);
|
|
|
| - views::Label* origin_label = new views::Label(
|
| - l10n_util::GetStringUTF16(IDS_COOKIES_LOCAL_STORAGE_ORIGIN_LABEL));
|
| + views::Label* origin_label = new views::Label(UTF16ToWide(
|
| + l10n_util::GetStringUTF16(IDS_COOKIES_LOCAL_STORAGE_ORIGIN_LABEL)));
|
| origin_value_field_ = new views::Textfield;
|
| - views::Label* size_label = new views::Label(
|
| - l10n_util::GetStringUTF16(IDS_COOKIES_LOCAL_STORAGE_SIZE_ON_DISK_LABEL));
|
| + views::Label* size_label = new views::Label(UTF16ToWide(
|
| + 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(
|
| + views::Label* last_modified_label = new views::Label(UTF16ToWide(
|
| 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;
|
|
|