| Index: chrome/browser/views/frame/browser_view.h
|
| ===================================================================
|
| --- chrome/browser/views/frame/browser_view.h (revision 19992)
|
| +++ chrome/browser/views/frame/browser_view.h (working copy)
|
| @@ -31,6 +31,7 @@
|
| class BookmarkBarView;
|
| class Browser;
|
| class BrowserBubble;
|
| +class BrowserTabStrip;
|
| class DownloadShelfView;
|
| class EncodingMenuModel;
|
| class ExtensionShelf;
|
| @@ -121,6 +122,7 @@
|
|
|
| // Accessor for the TabStrip.
|
| TabStrip* tabstrip() const { return tabstrip_; }
|
| + BrowserTabStrip* bts() const { return bts_; }
|
|
|
| // Accessor for the ExtensionShelf.
|
| ExtensionShelf* extension_shelf() const { return extension_shelf_; }
|
| @@ -238,6 +240,7 @@
|
| virtual void ConfirmBrowserCloseWithPendingDownloads();
|
| virtual void ShowHTMLDialog(HtmlDialogUIDelegate* delegate,
|
| gfx::NativeWindow parent_window);
|
| + virtual void ContinueDraggingDetachedTab(const gfx::Rect& tab_bounds);
|
| virtual void UserChangedTheme();
|
| virtual int GetExtraRenderViewHeight() const;
|
| virtual void TabContentsFocused(TabContents* source);
|
| @@ -395,6 +398,9 @@
|
| // The TabStrip.
|
| TabStrip* tabstrip_;
|
|
|
| + // The BrowserTabStrip.
|
| + BrowserTabStrip* bts_;
|
| +
|
| // The Toolbar containing the navigation buttons, menus and the address bar.
|
| ToolbarView* toolbar_;
|
|
|
|
|