OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_BROWSER_WINDOW_GTK_H_ | 5 #ifndef CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ |
6 #define CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ | 6 #define CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
10 | 10 |
11 #include <map> | 11 #include <map> |
12 | 12 |
13 #include "app/active_window_watcher_x.h" | 13 #include "app/active_window_watcher_x.h" |
14 #include "app/gtk_signal.h" | 14 #include "app/gtk_signal.h" |
15 #include "app/x11_util.h" | 15 #include "app/x11_util.h" |
16 #include "base/scoped_ptr.h" | 16 #include "base/scoped_ptr.h" |
17 #include "base/timer.h" | 17 #include "base/timer.h" |
18 #include "build/build_config.h" | 18 #include "build/build_config.h" |
19 #include "chrome/browser/browser_window.h" | 19 #include "chrome/browser/browser_window.h" |
20 #include "chrome/browser/pref_member.h" | 20 #include "chrome/browser/prefs/pref_member.h" |
21 #include "chrome/browser/tabs/tab_strip_model.h" | 21 #include "chrome/browser/tabs/tab_strip_model.h" |
22 #include "chrome/common/notification_registrar.h" | 22 #include "chrome/common/notification_registrar.h" |
23 #include "gfx/rect.h" | 23 #include "gfx/rect.h" |
24 | 24 |
25 class BookmarkBarGtk; | 25 class BookmarkBarGtk; |
26 class Browser; | 26 class Browser; |
27 class BrowserTitlebar; | 27 class BrowserTitlebar; |
28 class BrowserToolbarGtk; | 28 class BrowserToolbarGtk; |
29 class CustomDrawButton; | 29 class CustomDrawButton; |
30 class DownloadShelfGtk; | 30 class DownloadShelfGtk; |
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 | 432 |
433 // The accelerator group used to handle accelerators, owned by this object. | 433 // The accelerator group used to handle accelerators, owned by this object. |
434 GtkAccelGroup* accel_group_; | 434 GtkAccelGroup* accel_group_; |
435 | 435 |
436 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 436 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
437 | 437 |
438 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 438 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
439 }; | 439 }; |
440 | 440 |
441 #endif // CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ | 441 #endif // CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ |
OLD | NEW |