| Index: chrome/browser/extensions/extension_infobar_delegate.h
|
| diff --git a/chrome/browser/extensions/extension_infobar_delegate.h b/chrome/browser/extensions/extension_infobar_delegate.h
|
| index 5d8488c1ece4621ce3a57ff5d2b128d5a0161b8b..81f92b80b324671ec0244903b468befe4be55b0e 100644
|
| --- a/chrome/browser/extensions/extension_infobar_delegate.h
|
| +++ b/chrome/browser/extensions/extension_infobar_delegate.h
|
| @@ -24,7 +24,7 @@ class ExtensionViewHost;
|
|
|
| // The InfobarDelegate for creating and managing state for the ExtensionInfobar
|
| // plus monitor when the extension goes away.
|
| -class ExtensionInfoBarDelegate : public InfoBarDelegate,
|
| +class ExtensionInfoBarDelegate : public infobars::InfoBarDelegate,
|
| public content::NotificationObserver {
|
| public:
|
| virtual ~ExtensionInfoBarDelegate();
|
| @@ -56,11 +56,12 @@ class ExtensionInfoBarDelegate : public InfoBarDelegate,
|
| int height);
|
|
|
| // Returns an extension infobar that owns |delegate|.
|
| - static scoped_ptr<InfoBar> CreateInfoBar(
|
| + static scoped_ptr<infobars::InfoBar> CreateInfoBar(
|
| scoped_ptr<ExtensionInfoBarDelegate> delegate);
|
|
|
| // InfoBarDelegate:
|
| - virtual bool EqualsDelegate(InfoBarDelegate* delegate) const OVERRIDE;
|
| + virtual bool EqualsDelegate(
|
| + infobars::InfoBarDelegate* delegate) const OVERRIDE;
|
| virtual void InfoBarDismissed() OVERRIDE;
|
| virtual Type GetInfoBarType() const OVERRIDE;
|
| virtual ExtensionInfoBarDelegate* AsExtensionInfoBarDelegate() OVERRIDE;
|
|
|