OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_VIEWS_TABS_SIDE_TAB_STRIP_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TABS_SIDE_TAB_STRIP_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_TABS_SIDE_TAB_STRIP_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TABS_SIDE_TAB_STRIP_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/views/tabs/base_tab_strip.h" | 9 #include "chrome/browser/ui/views/tabs/base_tab_strip.h" |
10 | 10 |
11 struct TabRendererData; | 11 struct TabRendererData; |
12 | 12 |
13 class SideTabStrip : public BaseTabStrip { | 13 class SideTabStrip : public BaseTabStrip { |
14 public: | 14 public: |
15 // The tabs are inset by this much along all axis. | 15 // The tabs are inset by this much along all axis. |
16 static const int kTabStripInset; | 16 static const int kTabStripInset; |
17 | 17 |
18 explicit SideTabStrip(TabStripController* controller); | 18 explicit SideTabStrip(TabStripController* controller); |
19 virtual ~SideTabStrip(); | 19 virtual ~SideTabStrip(); |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 // positioned above the visible area if there are no mini-tabs. | 55 // positioned above the visible area if there are no mini-tabs. |
56 views::View* separator_; | 56 views::View* separator_; |
57 | 57 |
58 // Bounds of the sepatator. | 58 // Bounds of the sepatator. |
59 gfx::Rect separator_bounds_; | 59 gfx::Rect separator_bounds_; |
60 | 60 |
61 DISALLOW_COPY_AND_ASSIGN(SideTabStrip); | 61 DISALLOW_COPY_AND_ASSIGN(SideTabStrip); |
62 }; | 62 }; |
63 | 63 |
64 #endif // CHROME_BROWSER_UI_VIEWS_TABS_SIDE_TAB_STRIP_H_ | 64 #endif // CHROME_BROWSER_UI_VIEWS_TABS_SIDE_TAB_STRIP_H_ |
OLD | NEW |