OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/common/wm_shell.h" | 5 #include "ash/common/wm_shell.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "ash/common/accelerators/accelerator_controller.h" | 9 #include "ash/common/accelerators/accelerator_controller.h" |
10 #include "ash/common/accelerators/ash_focus_manager_factory.h" | 10 #include "ash/common/accelerators/ash_focus_manager_factory.h" |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 } | 265 } |
266 | 266 |
267 void WmShell::DeleteToastManager() { | 267 void WmShell::DeleteToastManager() { |
268 toast_manager_.reset(); | 268 toast_manager_.reset(); |
269 } | 269 } |
270 | 270 |
271 void WmShell::SetAcceleratorController( | 271 void WmShell::SetAcceleratorController( |
272 std::unique_ptr<AcceleratorController> accelerator_controller) { | 272 std::unique_ptr<AcceleratorController> accelerator_controller) { |
273 accelerator_controller_ = std::move(accelerator_controller); | 273 accelerator_controller_ = std::move(accelerator_controller); |
274 } | 274 } |
275 | |
276 } // namespace ash | 275 } // namespace ash |
OLD | NEW |