OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_UI_GTK_APPS_NATIVE_APP_WINDOW_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_APPS_NATIVE_APP_WINDOW_GTK_H_ |
6 #define CHROME_BROWSER_UI_GTK_APPS_NATIVE_APP_WINDOW_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_APPS_NATIVE_APP_WINDOW_GTK_H_ |
7 | 7 |
8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
9 | 9 |
10 #include "apps/shell_window.h" | 10 #include "apps/shell_window.h" |
11 #include "apps/ui/native_app_window.h" | 11 #include "apps/ui/native_app_window.h" |
12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
13 #include "base/timer/timer.h" | 13 #include "base/timer/timer.h" |
14 #include "chrome/browser/ui/gtk/extensions/extension_view_gtk.h" | 14 #include "chrome/browser/ui/gtk/extensions/extension_view_gtk.h" |
15 #include "content/public/browser/web_contents_observer.h" | 15 #include "content/public/browser/web_contents_observer.h" |
16 #include "third_party/skia/include/core/SkRegion.h" | 16 #include "third_party/skia/include/core/SkRegion.h" |
17 #include "ui/base/gtk/gtk_signal.h" | 17 #include "ui/base/gtk/gtk_signal.h" |
18 #include "ui/base/x/active_window_watcher_x_observer.h" | 18 #include "ui/base/x/active_window_watcher_x_observer.h" |
19 #include "ui/gfx/rect.h" | 19 #include "ui/gfx/rect.h" |
20 #include "ui/gfx/x/x11_atom_cache.h" | 20 #include "ui/gfx/x/x11_atom_cache.h" |
21 | 21 |
22 class ExtensionKeybindingRegistryGtk; | 22 class ExtensionKeybindingRegistryGtk; |
23 class Profile; | |
24 | 23 |
25 namespace extensions { | 24 namespace extensions { |
26 class Extension; | 25 class Extension; |
27 } | 26 } |
28 | 27 |
29 class NativeAppWindowGtk : public apps::NativeAppWindow, | 28 class NativeAppWindowGtk : public apps::NativeAppWindow, |
30 public ExtensionViewGtk::Container, | 29 public ExtensionViewGtk::Container, |
31 public ui::ActiveWindowWatcherXObserver, | 30 public ui::ActiveWindowWatcherXObserver, |
32 public content::WebContentsObserver { | 31 public content::WebContentsObserver { |
33 public: | 32 public: |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 | 183 |
185 ui::X11AtomCache atom_cache_; | 184 ui::X11AtomCache atom_cache_; |
186 | 185 |
187 // True if we listen for the XEvent. | 186 // True if we listen for the XEvent. |
188 bool is_x_event_listened_; | 187 bool is_x_event_listened_; |
189 | 188 |
190 DISALLOW_COPY_AND_ASSIGN(NativeAppWindowGtk); | 189 DISALLOW_COPY_AND_ASSIGN(NativeAppWindowGtk); |
191 }; | 190 }; |
192 | 191 |
193 #endif // CHROME_BROWSER_UI_GTK_APPS_NATIVE_APP_WINDOW_GTK_H_ | 192 #endif // CHROME_BROWSER_UI_GTK_APPS_NATIVE_APP_WINDOW_GTK_H_ |
OLD | NEW |