| Index: chrome/browser/autofill/autofill_cc_infobar_delegate.cc
|
| diff --git a/chrome/browser/autofill/autofill_cc_infobar_delegate.cc b/chrome/browser/autofill/autofill_cc_infobar_delegate.cc
|
| index f50b45a3ed3442e971cfd3eec7c5d9d74daa7ca7..ddf3499ad2c0e6f87a1c4467fa4c2dcad9ea7690 100644
|
| --- a/chrome/browser/autofill/autofill_cc_infobar_delegate.cc
|
| +++ b/chrome/browser/autofill/autofill_cc_infobar_delegate.cc
|
| @@ -15,7 +15,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"
|
|
|
|
|
| namespace autofill {
|
| @@ -66,9 +65,8 @@ void AutofillCCInfoBarDelegate::InfoBarDismissed() {
|
| LogUserAction(AutofillMetrics::INFOBAR_DENIED);
|
| }
|
|
|
| -gfx::Image* AutofillCCInfoBarDelegate::GetIcon() const {
|
| - return &ResourceBundle::GetSharedInstance().GetNativeImageNamed(
|
| - IDR_INFOBAR_AUTOFILL);
|
| +int AutofillCCInfoBarDelegate::GetIconID() const {
|
| + return IDR_INFOBAR_AUTOFILL;
|
| }
|
|
|
| InfoBarDelegate::Type AutofillCCInfoBarDelegate::GetInfoBarType() const {
|
|
|