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

Unified Diff: mash/wm/shelf_layout_impl.cc

Issue 1950293003: mash: Add status area container to mash window manager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments 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 | « mash/wm/shelf_layout_impl.h ('k') | mash/wm/shelf_layout_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mash/wm/shelf_layout_impl.cc
diff --git a/mash/wm/shelf_layout_impl.cc b/mash/wm/shelf_layout_impl.cc
new file mode 100644
index 0000000000000000000000000000000000000000..5a8917dd1beee2e99f3baa18c52da7c39478fcfd
--- /dev/null
+++ b/mash/wm/shelf_layout_impl.cc
@@ -0,0 +1,34 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "mash/wm/shelf_layout_impl.h"
+
+#include "mash/wm/root_window_controller.h"
+#include "mash/wm/shelf_layout_manager.h"
+#include "mash/wm/status_layout_manager.h"
+
+namespace mash {
+namespace wm {
+
+ShelfLayoutImpl::ShelfLayoutImpl() {}
+
+ShelfLayoutImpl::~ShelfLayoutImpl() {}
+
+void ShelfLayoutImpl::Initialize(RootWindowController* root_controller) {
+ root_controller_ = root_controller;
+}
+
+void ShelfLayoutImpl::SetAlignment(mash::shelf::mojom::Alignment alignment) {
+ root_controller_->GetShelfLayoutManager()->SetAlignment(alignment);
+ root_controller_->GetStatusLayoutManager()->SetAlignment(alignment);
+}
+
+void ShelfLayoutImpl::SetAutoHideBehavior(
+ mash::shelf::mojom::AutoHideBehavior auto_hide) {
+ root_controller_->GetShelfLayoutManager()->SetAutoHideBehavior(auto_hide);
+ root_controller_->GetStatusLayoutManager()->SetAutoHideBehavior(auto_hide);
+}
+
+} // namespace wm
+} // namespace mash
« no previous file with comments | « mash/wm/shelf_layout_impl.h ('k') | mash/wm/shelf_layout_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698