Home | History | Annotate | Download | only in frame
      1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_LAYOUT_DELEGATE_H_
      6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_LAYOUT_DELEGATE_H_
      7 
      8 class FullscreenExitBubbleViews;
      9 
     10 namespace gfx {
     11 class Rect;
     12 }
     13 namespace views {
     14 class View;
     15 }
     16 
     17 // Delegate class to allow BrowserViewLayout to be decoupled from BrowserView
     18 // for testing.
     19 class BrowserViewLayoutDelegate {
     20  public:
     21   virtual ~BrowserViewLayoutDelegate() {}
     22 
     23   virtual views::View* GetWindowSwitcherButton() const = 0;
     24   virtual bool IsTabStripVisible() const = 0;
     25   virtual gfx::Rect GetBoundsForTabStrip(views::View* tab_strip) const = 0;
     26   virtual bool IsToolbarVisible() const = 0;
     27   virtual bool IsBookmarkBarVisible() const = 0;
     28   virtual bool DownloadShelfNeedsLayout() const = 0;
     29   virtual FullscreenExitBubbleViews* GetFullscreenExitBubble() const = 0;
     30 };
     31 
     32 #endif  // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_LAYOUT_DELEGATE_H_
     33