OLD | NEW |
1 // Copyright (c) 2009 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 // A helper class that contains the gtk widgets that make up the titlebar. The | 5 // A helper class that contains the gtk widgets that make up the titlebar. The |
6 // titlebar consists of the tabstrip and if the custom chrome frame is turned | 6 // titlebar consists of the tabstrip and if the custom chrome frame is turned |
7 // on, it includes the taller titlebar and minimize, restore, maximize, and | 7 // on, it includes the taller titlebar and minimize, restore, maximize, and |
8 // close buttons. | 8 // close buttons. |
9 | 9 |
10 #ifndef CHROME_BROWSER_GTK_BROWSER_TITLEBAR_H_ | 10 #ifndef CHROME_BROWSER_UI_GTK_BROWSER_TITLEBAR_H_ |
11 #define CHROME_BROWSER_GTK_BROWSER_TITLEBAR_H_ | 11 #define CHROME_BROWSER_UI_GTK_BROWSER_TITLEBAR_H_ |
12 #pragma once | 12 #pragma once |
13 | 13 |
14 #include <gtk/gtk.h> | 14 #include <gtk/gtk.h> |
15 | 15 |
16 #include "app/active_window_watcher_x.h" | 16 #include "app/active_window_watcher_x.h" |
17 #include "app/menus/simple_menu_model.h" | 17 #include "app/menus/simple_menu_model.h" |
18 #include "app/gtk_signal.h" | 18 #include "app/gtk_signal.h" |
19 #include "base/scoped_ptr.h" | 19 #include "base/scoped_ptr.h" |
20 #include "chrome/common/notification_observer.h" | 20 #include "chrome/common/notification_observer.h" |
21 #include "chrome/common/notification_registrar.h" | 21 #include "chrome/common/notification_registrar.h" |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 | 229 |
230 // The throbber used when the window is in app mode or popup window mode. | 230 // The throbber used when the window is in app mode or popup window mode. |
231 Throbber throbber_; | 231 Throbber throbber_; |
232 | 232 |
233 // Theme provider for building buttons. | 233 // Theme provider for building buttons. |
234 GtkThemeProvider* theme_provider_; | 234 GtkThemeProvider* theme_provider_; |
235 | 235 |
236 NotificationRegistrar registrar_; | 236 NotificationRegistrar registrar_; |
237 }; | 237 }; |
238 | 238 |
239 #endif // CHROME_BROWSER_GTK_BROWSER_TITLEBAR_H_ | 239 #endif // CHROME_BROWSER_UI_GTK_BROWSER_TITLEBAR_H_ |
OLD | NEW |