| Index: chrome/browser/ui/content_settings/content_setting_bubble_model.cc
|
| diff --git a/chrome/browser/ui/content_settings/content_setting_bubble_model.cc b/chrome/browser/ui/content_settings/content_setting_bubble_model.cc
|
| index 277b0aacfc8754b32c3a4decf4f90ae797f0a006..b3cce9f507a566dc3650bb31a3ceeae632527dfa 100644
|
| --- a/chrome/browser/ui/content_settings/content_setting_bubble_model.cc
|
| +++ b/chrome/browser/ui/content_settings/content_setting_bubble_model.cc
|
| @@ -468,7 +468,8 @@ void ContentSettingPopupBubbleModel::SetPopups() {
|
| title = l10n_util::GetStringUTF8(IDS_TAB_LOADING_TITLE);
|
| PopupItem popup_item;
|
| popup_item.title = title;
|
| - popup_item.bitmap = (*i)->favicon_tab_helper()->GetFavicon();
|
| + // TODO: Make this use gfx::Image.
|
| + popup_item.bitmap = (*i)->favicon_tab_helper()->GetFavicon().AsBitmap();
|
| popup_item.tab_contents = (*i);
|
| add_popup(popup_item);
|
| }
|
|
|