Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2980)

Unified Diff: ash/shell.h

Issue 10789018: aura: Add X11 host window management. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Keep ash switches alphabetized. Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ash/shell.h
diff --git a/ash/shell.h b/ash/shell.h
index cb4133f26b6150c3be25f20261eef52e3830c9cc..041a2da2152782f45e552b32b992c3a760c29547 100644
--- a/ash/shell.h
+++ b/ash/shell.h
@@ -25,6 +25,9 @@ class CommandLine;
namespace aura {
class EventFilter;
class FocusManager;
+#if defined(USE_X11)
+class HostWindowManagerX11;
+#endif
class RootWindow;
class Window;
namespace client {
@@ -81,6 +84,7 @@ class CaptureController;
class DragDropController;
class EventRewriterEventFilter;
class FocusCycler;
+class HostWindowManager;
class MagnificationController;
class DisplayController;
class MouseCursorEventFilter;
@@ -391,6 +395,11 @@ class ASH_EXPORT Shell : aura::CursorDelegate {
ScreenAsh* screen_;
+ scoped_ptr<internal::HostWindowManager> host_window_manager_;
+#if defined(USE_X11)
+ scoped_ptr<aura::HostWindowManagerX11> x11_host_window_manager_;
+#endif
+
// Active root window. Never become NULL.
aura::RootWindow* active_root_window_;

Powered by Google App Engine
This is Rietveld 408576698