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

Side by Side Diff: mash/wm/shelf_layout_impl.cc

Issue 2029883002: Moves mash/wm into ash/mus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_static_assert
Patch Set: move comment Created 4 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "mash/wm/shelf_layout_impl.h"
6
7 #include "mash/wm/root_window_controller.h"
8 #include "mash/wm/shelf_layout_manager.h"
9 #include "mash/wm/status_layout_manager.h"
10
11 namespace mash {
12 namespace wm {
13
14 ShelfLayoutImpl::ShelfLayoutImpl() {}
15
16 ShelfLayoutImpl::~ShelfLayoutImpl() {}
17
18 void ShelfLayoutImpl::Initialize(RootWindowController* root_controller) {
19 root_controller_ = root_controller;
20 }
21
22 void ShelfLayoutImpl::SetAlignment(mash::shelf::mojom::Alignment alignment) {
23 root_controller_->GetShelfLayoutManager()->SetAlignment(alignment);
24 root_controller_->GetStatusLayoutManager()->SetAlignment(alignment);
25 }
26
27 void ShelfLayoutImpl::SetAutoHideBehavior(
28 mash::shelf::mojom::AutoHideBehavior auto_hide) {
29 root_controller_->GetShelfLayoutManager()->SetAutoHideBehavior(auto_hide);
30 root_controller_->GetStatusLayoutManager()->SetAutoHideBehavior(auto_hide);
31 }
32
33 } // namespace wm
34 } // namespace mash
OLDNEW
« 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