summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk/browser_window_gtk.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/gtk/browser_window_gtk.h')
-rw-r--r--chrome/browser/gtk/browser_window_gtk.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/gtk/browser_window_gtk.h b/chrome/browser/gtk/browser_window_gtk.h
index c42ad97..df1fbdd 100644
--- a/chrome/browser/gtk/browser_window_gtk.h
+++ b/chrome/browser/gtk/browser_window_gtk.h
@@ -13,6 +13,7 @@
#include "chrome/browser/tabs/tab_strip_model.h"
class BrowserToolbarGtk;
+class FindBarGtk;
class LocationBar;
class NineBox;
class StatusBubbleGtk;
@@ -119,6 +120,11 @@ class BrowserWindowGtk : public BrowserWindow,
// (along with associated infobars, shelves, and other things that are part
// of the content area).
scoped_ptr<TabContentsContainerGtk> contents_container_;
+
+ // The Find Bar. This may be NULL if there is no Find Bar, and if it is
+ // non-NULL, it may or may not be visible. It is possible for the Find Bar
+ // to move among windows as tabs are dragged around.
+ scoped_ptr<FindBarGtk> find_bar_;
};
#endif // CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_