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

Unified Diff: ash/root_window_controller.h

Issue 13896026: Stick windows to sides of workspaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Dock with zero width (no logs) Created 7 years, 6 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/root_window_controller.h
diff --git a/ash/root_window_controller.h b/ash/root_window_controller.h
index f8855a7fdc105332b4c6ac5df6be187fd60f6e13..a62ae2294ce0d75e82620b83b41af5b9969233a4 100644
--- a/ash/root_window_controller.h
+++ b/ash/root_window_controller.h
@@ -43,6 +43,7 @@ class ToplevelWindowEventHandler;
namespace internal {
class BootSplashScreen;
+class DockLayoutManager;
class PanelLayoutManager;
class RootWindowLayoutManager;
class ScreenDimmer;
@@ -192,6 +193,9 @@ class ASH_EXPORT RootWindowController {
// The shelf for managing the launcher and the status widget.
scoped_ptr<ShelfWidget> shelf_;
+ // Manages layout of docked windows. Owned by DockContainer.
+ DockLayoutManager* dock_layout_manager_;
+
// Manages layout of panels. Owned by PanelContainer.
PanelLayoutManager* panel_layout_manager_;
@@ -211,6 +215,7 @@ class ASH_EXPORT RootWindowController {
scoped_ptr<ToplevelWindowEventHandler> modal_container_handler_;
scoped_ptr<ToplevelWindowEventHandler> lock_modal_container_handler_;
scoped_ptr<ToplevelWindowEventHandler> panel_container_handler_;
+ scoped_ptr<ToplevelWindowEventHandler> dock_container_handler_;
DISALLOW_COPY_AND_ASSIGN(RootWindowController);
};

Powered by Google App Engine
This is Rietveld 408576698