| Index: chrome/browser/views/blocked_popup_container.cc
|
| ===================================================================
|
| --- chrome/browser/views/blocked_popup_container.cc (revision 10809)
|
| +++ chrome/browser/views/blocked_popup_container.cc (working copy)
|
| @@ -298,10 +298,10 @@
|
| std::wstring BlockedPopupContainer::GetDisplayStringForItem(int index) {
|
| const GURL& url = blocked_popups_[index].first->GetURL().GetOrigin();
|
|
|
| - std::wstring label =
|
| - l10n_util::GetStringF(IDS_POPUP_TITLE_FORMAT,
|
| - UTF8ToWide(url.possibly_invalid_spec()),
|
| - blocked_popups_[index].first->GetTitle());
|
| + std::wstring label = l10n_util::GetStringF(
|
| + IDS_POPUP_TITLE_FORMAT,
|
| + UTF8ToWide(url.possibly_invalid_spec()),
|
| + UTF16ToWideHack(blocked_popups_[index].first->GetTitle()));
|
| return label;
|
| }
|
|
|
|
|