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_GTK_TABS_TAB_RENDERER_GTK_H_ | 5 #ifndef CHROME_BROWSER_GTK_TABS_TAB_RENDERER_GTK_H_ |
6 #define CHROME_BROWSER_GTK_TABS_TAB_RENDERER_GTK_H_ | 6 #define CHROME_BROWSER_GTK_TABS_TAB_RENDERER_GTK_H_ |
7 | 7 |
8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
9 #include <map> | 9 #include <map> |
10 | 10 |
11 #include "app/animation.h" | 11 #include "app/animation.h" |
12 #include "app/gfx/canvas.h" | |
13 #include "app/gfx/font.h" | |
14 #include "app/slide_animation.h" | 12 #include "app/slide_animation.h" |
15 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
16 #include "base/string16.h" | 14 #include "base/string16.h" |
17 #include "chrome/common/notification_observer.h" | 15 #include "chrome/common/notification_observer.h" |
18 #include "chrome/common/notification_registrar.h" | 16 #include "chrome/common/notification_registrar.h" |
19 #include "chrome/common/owned_widget_gtk.h" | 17 #include "chrome/common/owned_widget_gtk.h" |
| 18 #include "gfx/canvas.h" |
| 19 #include "gfx/font.h" |
20 #include "gfx/rect.h" | 20 #include "gfx/rect.h" |
21 #include "third_party/skia/include/core/SkBitmap.h" | 21 #include "third_party/skia/include/core/SkBitmap.h" |
22 | 22 |
23 namespace gfx { | 23 namespace gfx { |
24 class Size; | 24 class Size; |
25 } // namespace gfx | 25 } // namespace gfx |
26 | 26 |
27 class CustomDrawButton; | 27 class CustomDrawButton; |
28 class GtkThemeProvider; | 28 class GtkThemeProvider; |
29 class TabContents; | 29 class TabContents; |
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 // The current color of the close button. | 441 // The current color of the close button. |
442 SkColor close_button_color_; | 442 SkColor close_button_color_; |
443 | 443 |
444 // Used to listen for theme change notifications. | 444 // Used to listen for theme change notifications. |
445 NotificationRegistrar registrar_; | 445 NotificationRegistrar registrar_; |
446 | 446 |
447 DISALLOW_COPY_AND_ASSIGN(TabRendererGtk); | 447 DISALLOW_COPY_AND_ASSIGN(TabRendererGtk); |
448 }; | 448 }; |
449 | 449 |
450 #endif // CHROME_BROWSER_GTK_TABS_TAB_RENDERER_GTK_H_ | 450 #endif // CHROME_BROWSER_GTK_TABS_TAB_RENDERER_GTK_H_ |
OLD | NEW |