diff options
author | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-21 22:46:22 +0000 |
---|---|---|
committer | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-21 22:46:22 +0000 |
commit | cf4d5a246441d978a0c7d8abfa1b66d1f1512e66 (patch) | |
tree | 716b48fd2a0413cdcfd345865a7f798c2a8494c9 /chrome/browser/download/download_request_infobar_delegate.h | |
parent | 5f02c64683bf77ca2b92f08967470084c9276d4d (diff) | |
download | chromium_src-cf4d5a246441d978a0c7d8abfa1b66d1f1512e66.zip chromium_src-cf4d5a246441d978a0c7d8abfa1b66d1f1512e66.tar.gz chromium_src-cf4d5a246441d978a0c7d8abfa1b66d1f1512e66.tar.bz2 |
Make InfoBarDelegate::GetIcon() return gfx::Image rather than SkBitmap.
BUG=carnitas
TEST=visual
Review URL: http://codereview.chromium.org/6883095
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@82569 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/download/download_request_infobar_delegate.h')
-rw-r--r-- | chrome/browser/download/download_request_infobar_delegate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/download/download_request_infobar_delegate.h b/chrome/browser/download/download_request_infobar_delegate.h index aa5a789..81a9898 100644 --- a/chrome/browser/download/download_request_infobar_delegate.h +++ b/chrome/browser/download/download_request_infobar_delegate.h @@ -31,7 +31,7 @@ class DownloadRequestInfoBarDelegate : public ConfirmInfoBarDelegate { // ConfirmInfoBarDelegate: virtual void InfoBarClosed(); - virtual SkBitmap* GetIcon() const; + virtual gfx::Image* GetIcon() const; virtual string16 GetMessageText() const; virtual string16 GetButtonLabel(InfoBarButton button) const; virtual bool Accept(); |