| Index: chrome/browser/ui/content_settings/content_setting_changed_infobar_delegate.cc
|
| diff --git a/chrome/browser/ui/content_settings/content_setting_changed_infobar_delegate.cc b/chrome/browser/ui/content_settings/content_setting_changed_infobar_delegate.cc
|
| index 0bb12906388ca1870347c854674c8ae49752437a..d9a102db2bbb00bdb5e1ac5162096b9617c141b7 100644
|
| --- a/chrome/browser/ui/content_settings/content_setting_changed_infobar_delegate.cc
|
| +++ b/chrome/browser/ui/content_settings/content_setting_changed_infobar_delegate.cc
|
| @@ -10,7 +10,6 @@
|
| #include "grit/generated_resources.h"
|
| #include "grit/theme_resources.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| -#include "ui/base/resource/resource_bundle.h"
|
|
|
| // static
|
| void ContentSettingChangedInfoBarDelegate::Create(
|
| @@ -35,8 +34,8 @@ ContentSettingChangedInfoBarDelegate::ContentSettingChangedInfoBarDelegate(
|
| ContentSettingChangedInfoBarDelegate::~ContentSettingChangedInfoBarDelegate() {
|
| }
|
|
|
| -gfx::Image* ContentSettingChangedInfoBarDelegate::GetIcon() const {
|
| - return &ResourceBundle::GetSharedInstance().GetNativeImageNamed(icon_);
|
| +int ContentSettingChangedInfoBarDelegate::GetIconID() const {
|
| + return icon_;
|
| }
|
|
|
| InfoBarDelegate::Type ContentSettingChangedInfoBarDelegate::GetInfoBarType()
|
|
|