OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_DOWNLOAD_SHELF_GTK_H_ | 5 #ifndef CHROME_BROWSER_GTK_DOWNLOAD_SHELF_GTK_H_ |
6 #define CHROME_BROWSER_GTK_DOWNLOAD_SHELF_GTK_H_ | 6 #define CHROME_BROWSER_GTK_DOWNLOAD_SHELF_GTK_H_ |
7 | 7 |
8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
9 | 9 |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/gfx/native_widget_types.h" | 12 #include "app/gfx/native_widget_types.h" |
13 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
14 #include "chrome/browser/download/download_shelf.h" | 14 #include "chrome/browser/download/download_shelf.h" |
15 #include "chrome/browser/gtk/slide_animator_gtk.h" | 15 #include "chrome/browser/gtk/slide_animator_gtk.h" |
16 #include "chrome/common/notification_observer.h" | 16 #include "chrome/common/notification_observer.h" |
17 #include "chrome/common/notification_registrar.h" | 17 #include "chrome/common/notification_registrar.h" |
18 #include "chrome/common/owned_widget_gtk.h" | 18 #include "chrome/common/owned_widget_gtk.h" |
19 | 19 |
20 class BaseDownloadItemModel; | 20 class BaseDownloadItemModel; |
21 class Browser; | 21 class Browser; |
22 class CustomDrawButton; | 22 class CustomDrawButton; |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 | 97 |
98 // Gives us our colors and theme information. | 98 // Gives us our colors and theme information. |
99 GtkThemeProvider* theme_provider_; | 99 GtkThemeProvider* theme_provider_; |
100 | 100 |
101 NotificationRegistrar registrar_; | 101 NotificationRegistrar registrar_; |
102 | 102 |
103 friend class DownloadItemGtk; | 103 friend class DownloadItemGtk; |
104 }; | 104 }; |
105 | 105 |
106 #endif // CHROME_BROWSER_GTK_DOWNLOAD_SHELF_GTK_H_ | 106 #endif // CHROME_BROWSER_GTK_DOWNLOAD_SHELF_GTK_H_ |
OLD | NEW |