diff options
Diffstat (limited to 'chrome/browser/gtk/browser_window_gtk.h')
-rw-r--r-- | chrome/browser/gtk/browser_window_gtk.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/chrome/browser/gtk/browser_window_gtk.h b/chrome/browser/gtk/browser_window_gtk.h index 8730a78..b15c9fc 100644 --- a/chrome/browser/gtk/browser_window_gtk.h +++ b/chrome/browser/gtk/browser_window_gtk.h @@ -119,6 +119,8 @@ class BrowserWindowGtk : public BrowserWindow, // Accessor for the tab strip. TabStripGtk* tabstrip() const { return tabstrip_.get(); } + void UpdateDevToolsForContents(TabContents* contents); + void UpdateUIForContents(TabContents* contents); void OnBoundsChanged(const gfx::Rect& bounds); @@ -284,6 +286,13 @@ class BrowserWindowGtk : public BrowserWindow, // of the content area). scoped_ptr<TabContentsContainerGtk> contents_container_; + // A container that manages the GtkWidget*s of developer tools for the + // selected tab contents. + scoped_ptr<TabContentsContainerGtk> devtools_container_; + + // Split pane containing the contents_container_ and the devtools_container_. + GtkWidget* contents_split_; + // The tab strip. Always non-NULL. scoped_ptr<TabStripGtk> tabstrip_; |