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

Side by Side Diff: ash/mus/shelf_layout_impl.cc

Issue 2235493002: mash: Disable ash_sysui; begin removal. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Connect to chrome on mash session launch; add missing gn dep. Created 4 years, 4 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 | « ash/mus/shelf_layout_impl.h ('k') | ash/mus/user_window_controller_impl.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 "ash/mus/shelf_layout_impl.h"
6
7 #include "ash/mus/root_window_controller.h"
8 #include "ash/mus/shelf_layout_manager.h"
9 #include "ash/mus/status_layout_manager.h"
10
11 namespace ash {
12 namespace mus {
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 mus
34 } // namespace ash
OLDNEW
« no previous file with comments | « ash/mus/shelf_layout_impl.h ('k') | ash/mus/user_window_controller_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698