| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_VIEWS_TABS_TAB_RENDERER_H__ | 5 #ifndef CHROME_BROWSER_VIEWS_TABS_TAB_RENDERER_H__ |
| 6 #define CHROME_BROWSER_VIEWS_TABS_TAB_RENDERER_H__ | 6 #define CHROME_BROWSER_VIEWS_TABS_TAB_RENDERER_H__ |
| 7 | 7 |
| 8 #include "app/animation.h" | 8 #include "app/animation.h" |
| 9 #include "app/slide_animation.h" | 9 #include "app/slide_animation.h" |
| 10 #include "app/throb_animation.h" | 10 #include "app/throb_animation.h" |
| 11 #include "base/gfx/point.h" | 11 #include "base/gfx/point.h" |
| 12 #include "views/controls/button/image_button.h" | 12 #include "views/controls/button/image_button.h" |
| 13 #include "views/controls/menu/menu.h" | |
| 14 #include "views/view.h" | 13 #include "views/view.h" |
| 15 | 14 |
| 16 class TabContents; | 15 class TabContents; |
| 17 | 16 |
| 18 /////////////////////////////////////////////////////////////////////////////// | 17 /////////////////////////////////////////////////////////////////////////////// |
| 19 // | 18 // |
| 20 // TabRenderer | 19 // TabRenderer |
| 21 // | 20 // |
| 22 // A View that renders a Tab, either in a TabStrip or in a DraggedTabView. | 21 // A View that renders a Tab, either in a TabStrip or in a DraggedTabView. |
| 23 // | 22 // |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 | 205 |
| 207 ThemeProvider* theme_provider_; | 206 ThemeProvider* theme_provider_; |
| 208 | 207 |
| 209 static void InitClass(); | 208 static void InitClass(); |
| 210 static bool initialized_; | 209 static bool initialized_; |
| 211 | 210 |
| 212 DISALLOW_EVIL_CONSTRUCTORS(TabRenderer); | 211 DISALLOW_EVIL_CONSTRUCTORS(TabRenderer); |
| 213 }; | 212 }; |
| 214 | 213 |
| 215 #endif // CHROME_BROWSER_VIEWS_TABS_TAB_RENDERER_H__ | 214 #endif // CHROME_BROWSER_VIEWS_TABS_TAB_RENDERER_H__ |
| OLD | NEW |