diff options
Diffstat (limited to 'chrome/browser/gtk/browser_window_gtk.h')
-rw-r--r-- | chrome/browser/gtk/browser_window_gtk.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/gtk/browser_window_gtk.h b/chrome/browser/gtk/browser_window_gtk.h index 4305dac..bc9f697 100644 --- a/chrome/browser/gtk/browser_window_gtk.h +++ b/chrome/browser/gtk/browser_window_gtk.h @@ -19,6 +19,7 @@ class BookmarkBarGtk; class BrowserToolbarGtk; class FindBarController; +class InfoBarContainerGtk; class LocationBar; class NineBox; class StatusBubbleGtk; @@ -169,6 +170,9 @@ class BrowserWindowGtk : public BrowserWindow, // The tab strip. Always non-NULL. scoped_ptr<TabStripGtk> tabstrip_; + // The container for info bars. Always non-NULL. + scoped_ptr<InfoBarContainerGtk> infobar_container_; + // When it goes out of scope during our destruction, |method_factory_| will // cancel its pending tasks (which depend on us still existing). ScopedRunnableMethodFactory<BrowserWindowGtk> method_factory_; |