| Index: chrome/browser/download/download_request_infobar_delegate.cc
|
| diff --git a/chrome/browser/download/download_request_infobar_delegate.cc b/chrome/browser/download/download_request_infobar_delegate.cc
|
| index bfe6d4aa891177aaaceb35c2385454ad0d5c9be8..e0c89aaa3c751ce30630c48169c89de5b9eb7b88 100644
|
| --- a/chrome/browser/download/download_request_infobar_delegate.cc
|
| +++ b/chrome/browser/download/download_request_infobar_delegate.cc
|
| @@ -8,7 +8,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"
|
|
|
| DownloadRequestInfoBarDelegate::FakeCreateCallback*
|
| DownloadRequestInfoBarDelegate::callback_ = NULL;
|
| @@ -54,9 +53,8 @@ DownloadRequestInfoBarDelegate::DownloadRequestInfoBarDelegate(
|
| host_(host) {
|
| }
|
|
|
| -gfx::Image* DownloadRequestInfoBarDelegate::GetIcon() const {
|
| - return &ResourceBundle::GetSharedInstance().GetNativeImageNamed(
|
| - IDR_INFOBAR_MULTIPLE_DOWNLOADS);
|
| +int DownloadRequestInfoBarDelegate::GetIconID() const {
|
| + return IDR_INFOBAR_MULTIPLE_DOWNLOADS;
|
| }
|
|
|
| string16 DownloadRequestInfoBarDelegate::GetMessageText() const {
|
|
|