OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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_TAB_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TABS_TAB_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_TABS_TAB_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TABS_TAB_CONTROLLER_H_ |
7 | 7 |
8 #include "chrome/browser/ui/views/tabs/tab_strip_types.h" | 8 #include "chrome/browser/ui/views/tabs/tab_strip_types.h" |
9 | 9 |
10 class Tab; | 10 class Tab; |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 const ui::MouseEvent& event) = 0; | 89 const ui::MouseEvent& event) = 0; |
90 | 90 |
91 // Returns true if |tab| needs to be painted. If false is returned the tab is | 91 // Returns true if |tab| needs to be painted. If false is returned the tab is |
92 // not painted. If true is returned the tab should be painted and |clip| is | 92 // not painted. If true is returned the tab should be painted and |clip| is |
93 // set to the clip (if |clip| is empty means no clip). | 93 // set to the clip (if |clip| is empty means no clip). |
94 virtual bool ShouldPaintTab(const Tab* tab, gfx::Rect* clip) = 0; | 94 virtual bool ShouldPaintTab(const Tab* tab, gfx::Rect* clip) = 0; |
95 | 95 |
96 // Returns true if tabs painted in the rectangular light-bar style. | 96 // Returns true if tabs painted in the rectangular light-bar style. |
97 virtual bool IsImmersiveStyle() const = 0; | 97 virtual bool IsImmersiveStyle() const = 0; |
98 | 98 |
| 99 // Returns the resource ID for the image to use as the tab background. |
| 100 // |custom_image| is an outparam set to true if either the tab or the frame |
| 101 // background images have been customized; see implementation comments. |
| 102 virtual int GetBackgroundResourceId(bool* custom_image) const = 0; |
| 103 |
99 // Adds private information to the tab's accessibility state. | 104 // Adds private information to the tab's accessibility state. |
100 virtual void UpdateTabAccessibilityState(const Tab* tab, | 105 virtual void UpdateTabAccessibilityState(const Tab* tab, |
101 ui::AXViewState* state) = 0; | 106 ui::AXViewState* state) = 0; |
102 | 107 |
103 protected: | 108 protected: |
104 virtual ~TabController() {} | 109 virtual ~TabController() {} |
105 }; | 110 }; |
106 | 111 |
107 #endif // CHROME_BROWSER_UI_VIEWS_TABS_TAB_CONTROLLER_H_ | 112 #endif // CHROME_BROWSER_UI_VIEWS_TABS_TAB_CONTROLLER_H_ |
OLD | NEW |