| Index: chrome/browser/ui/startup/autolaunch_prompt_win.cc
|
| diff --git a/chrome/browser/ui/startup/autolaunch_prompt_win.cc b/chrome/browser/ui/startup/autolaunch_prompt_win.cc
|
| index 5028fa0482873e3eb99c5e24bac5ea21927b12fc..54acbed4b859ed76b00677d653cd1a51744a47cd 100644
|
| --- a/chrome/browser/ui/startup/autolaunch_prompt_win.cc
|
| +++ b/chrome/browser/ui/startup/autolaunch_prompt_win.cc
|
| @@ -53,7 +53,7 @@ class AutolaunchInfoBarDelegate : public ConfirmInfoBarDelegate {
|
| void AllowExpiry() { should_expire_ = true; }
|
|
|
| // ConfirmInfoBarDelegate:
|
| - virtual gfx::Image* GetIcon() const OVERRIDE;
|
| + virtual int GetIconID() const OVERRIDE;
|
| virtual string16 GetMessageText() const OVERRIDE;
|
| virtual string16 GetButtonLabel(InfoBarButton button) const OVERRIDE;
|
| virtual bool Accept() OVERRIDE;
|
| @@ -108,9 +108,8 @@ AutolaunchInfoBarDelegate::AutolaunchInfoBarDelegate(
|
| AutolaunchInfoBarDelegate::~AutolaunchInfoBarDelegate() {
|
| }
|
|
|
| -gfx::Image* AutolaunchInfoBarDelegate::GetIcon() const {
|
| - return &ResourceBundle::GetSharedInstance().GetNativeImageNamed(
|
| - IDR_PRODUCT_LOGO_32);
|
| +int AutolaunchInfoBarDelegate::GetIconID() const {
|
| + return IDR_PRODUCT_LOGO_32;
|
| }
|
|
|
| string16 AutolaunchInfoBarDelegate::GetMessageText() const {
|
|
|