Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3351)

Unified Diff: chrome/browser/views/frame/browser_frame.h

Issue 1001003: Allow dynamic switching in and out of sidetabs mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/views/frame/browser_frame.h
===================================================================
--- chrome/browser/views/frame/browser_frame.h (revision 41630)
+++ chrome/browser/views/frame/browser_frame.h (working copy)
@@ -41,10 +41,6 @@
// construction.
virtual views::Window* GetWindow() = 0;
- // Notification that the tab strip has been created. This should let the
- // BrowserRootView know about it so it can enable drag and drop.
- virtual void TabStripCreated(BaseTabStrip* tabstrip) = 0;
-
// Determine the distance of the left edge of the minimize button from the
// left edge of the window. Used in our Non-Client View's Layout.
virtual int GetMinimizeButtonOffset() const = 0;
@@ -74,6 +70,10 @@
// calls this method _after_ the TabStrip has painted itself so the shadow is
// rendered above the tabs.
virtual void PaintTabStripShadow(gfx::Canvas* canvas) = 0;
+
+ // Notifies the frame that the tab strip display mode changed so it can update
+ // its frame treatment if necessary.
+ virtual void TabStripDisplayModeChanged() = 0;
};
#endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_FRAME_H_

Powered by Google App Engine
This is Rietveld 408576698