| Index: chrome/browser/infobars/infobar_tab_helper.h
|
| diff --git a/chrome/browser/infobars/infobar_tab_helper.h b/chrome/browser/infobars/infobar_tab_helper.h
|
| index b9a5603f7f50da6a890388e6dbfb4cdf4ca313b2..3e2c38d9c48d76baf7acc2dbfe37cde37eb308a7 100644
|
| --- a/chrome/browser/infobars/infobar_tab_helper.h
|
| +++ b/chrome/browser/infobars/infobar_tab_helper.h
|
| @@ -6,7 +6,7 @@
|
| #define CHROME_BROWSER_INFOBARS_INFOBAR_TAB_HELPER_H_
|
|
|
| #include "base/basictypes.h"
|
| -#include "chrome/browser/api/infobars/infobar_tab_service.h"
|
| +#include "chrome/browser/api/infobars/infobar_service.h"
|
| #include "content/public/browser/notification_observer.h"
|
| #include "content/public/browser/notification_registrar.h"
|
| #include "content/public/browser/web_contents_observer.h"
|
| @@ -14,14 +14,14 @@
|
| class InfoBarDelegate;
|
|
|
| // Per-tab info bar manager.
|
| -class InfoBarTabHelper : public InfoBarTabService,
|
| +class InfoBarTabHelper : public InfoBarService,
|
| public content::WebContentsObserver,
|
| public content::NotificationObserver {
|
| public:
|
| explicit InfoBarTabHelper(content::WebContents* web_contents);
|
| virtual ~InfoBarTabHelper();
|
|
|
| - // InfoBarTabService implementation.
|
| + // InfoBarService implementation.
|
| virtual bool AddInfoBar(InfoBarDelegate* delegate) OVERRIDE;
|
| virtual void RemoveInfoBar(InfoBarDelegate* delegate) OVERRIDE;
|
| virtual bool ReplaceInfoBar(InfoBarDelegate* old_delegate,
|
|
|