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

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

Issue 2184943002: services/ui: Move some files into the client lib. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@chrome-gpu-in-mus-windows
Patch Set: . 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 | « no previous file | chrome/browser/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ash/mus/window_manager_application.h" 5 #include "ash/mus/window_manager_application.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "ash/common/material_design/material_design_controller.h" 9 #include "ash/common/material_design/material_design_controller.h"
10 #include "ash/mus/accelerators/accelerator_registrar_impl.h" 10 #include "ash/mus/accelerators/accelerator_registrar_impl.h"
11 #include "ash/mus/window_manager.h" 11 #include "ash/mus/window_manager.h"
12 #include "base/bind.h" 12 #include "base/bind.h"
13 #include "base/memory/ptr_util.h" 13 #include "base/memory/ptr_util.h"
14 #include "services/shell/public/cpp/connection.h" 14 #include "services/shell/public/cpp/connection.h"
15 #include "services/shell/public/cpp/connector.h" 15 #include "services/shell/public/cpp/connector.h"
16 #include "services/tracing/public/cpp/provider.h" 16 #include "services/tracing/public/cpp/provider.h"
17 #include "services/ui/common/event_matcher_util.h" 17 #include "services/ui/common/event_matcher_util.h"
18 #include "services/ui/common/gpu_service.h" 18 #include "services/ui/public/cpp/gpu_service.h"
19 #include "services/ui/public/cpp/window.h" 19 #include "services/ui/public/cpp/window.h"
20 #include "services/ui/public/cpp/window_tree_client.h" 20 #include "services/ui/public/cpp/window_tree_client.h"
21 #include "ui/aura/env.h" 21 #include "ui/aura/env.h"
22 #include "ui/events/event.h" 22 #include "ui/events/event.h"
23 #include "ui/message_center/message_center.h" 23 #include "ui/message_center/message_center.h"
24 #include "ui/views/mus/aura_init.h" 24 #include "ui/views/mus/aura_init.h"
25 #include "ui/views/mus/surface_context_factory.h" 25 #include "ui/views/mus/surface_context_factory.h"
26 26
27 #if defined(OS_CHROMEOS) 27 #if defined(OS_CHROMEOS)
28 #include "ash/common/system/chromeos/power/power_status.h" 28 #include "ash/common/system/chromeos/power/power_status.h"
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 base::Bind(&WindowManagerApplication::OnAcceleratorRegistrarDestroyed, 142 base::Bind(&WindowManagerApplication::OnAcceleratorRegistrarDestroyed,
143 base::Unretained(this)))); 143 base::Unretained(this))));
144 } 144 }
145 145
146 void WindowManagerApplication::ScreenlockStateChanged(bool locked) { 146 void WindowManagerApplication::ScreenlockStateChanged(bool locked) {
147 window_manager_->SetScreenLocked(locked); 147 window_manager_->SetScreenLocked(locked);
148 } 148 }
149 149
150 } // namespace mus 150 } // namespace mus
151 } // namespace ash 151 } // namespace ash
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698