diff options
Diffstat (limited to 'chrome/browser/extensions/theme_installed_infobar_delegate.h')
-rw-r--r-- | chrome/browser/extensions/theme_installed_infobar_delegate.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/extensions/theme_installed_infobar_delegate.h b/chrome/browser/extensions/theme_installed_infobar_delegate.h index d3eaeb6..1288a55 100644 --- a/chrome/browser/extensions/theme_installed_infobar_delegate.h +++ b/chrome/browser/extensions/theme_installed_infobar_delegate.h @@ -9,6 +9,7 @@ #include "chrome/browser/tab_contents/confirm_infobar_delegate.h" #include "content/common/notification_registrar.h" +class BrowserThemeProvider; class Extension; class SkBitmap; class TabContents; @@ -29,7 +30,7 @@ class ThemeInstalledInfoBarDelegate : public ConfirmInfoBarDelegate, protected: virtual ~ThemeInstalledInfoBarDelegate(); - Profile* profile() { return profile_; } + BrowserThemeProvider* provider() { return provider_; } // ConfirmInfoBarDelegate: virtual bool Cancel(); @@ -49,6 +50,7 @@ class ThemeInstalledInfoBarDelegate : public ConfirmInfoBarDelegate, const NotificationDetails& details); Profile* profile_; + BrowserThemeProvider* provider_; // Name of theme that's just been installed. std::string name_; |