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

Unified Diff: ash/root_window_controller_common.h

Issue 2032613002: Converts RootWindowLayoutManager to common types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « ash/root_window_controller.cc ('k') | ash/root_window_controller_common.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/root_window_controller_common.h
diff --git a/ash/root_window_controller_common.h b/ash/root_window_controller_common.h
index 4a0b8b40e188659132f42a1c27ef8e7f42ef829f..c89e8df32f39cbc6b37a22bb6d7196af72584efe 100644
--- a/ash/root_window_controller_common.h
+++ b/ash/root_window_controller_common.h
@@ -9,6 +9,7 @@
namespace ash {
namespace wm {
+class RootWindowLayoutManager;
class WmWindow;
}
@@ -23,9 +24,18 @@ class RootWindowControllerCommon {
// Creates the containers (WmWindows) used by the shell.
void CreateContainers();
+ // Creates the LayoutManagers for the windows created by CreateContainers().
+ void CreateLayoutManagers();
+
+ wm::RootWindowLayoutManager* root_window_layout() {
+ return root_window_layout_;
+ }
+
private:
wm::WmWindow* root_;
+ wm::RootWindowLayoutManager* root_window_layout_;
+
DISALLOW_COPY_AND_ASSIGN(RootWindowControllerCommon);
};
« no previous file with comments | « ash/root_window_controller.cc ('k') | ash/root_window_controller_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698