| 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/mus/bridge/wm_shell_mus.h" | 5 #include "ash/mus/bridge/wm_shell_mus.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/key_event_watcher.h" | 10 #include "ash/common/key_event_watcher.h" |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 } | 400 } |
| 401 | 401 |
| 402 void WmShellMus::ToggleIgnoreExternalKeyboard() { | 402 void WmShellMus::ToggleIgnoreExternalKeyboard() { |
| 403 NOTIMPLEMENTED(); | 403 NOTIMPLEMENTED(); |
| 404 } | 404 } |
| 405 | 405 |
| 406 void WmShellMus::SetLaserPointerEnabled(bool enabled) { | 406 void WmShellMus::SetLaserPointerEnabled(bool enabled) { |
| 407 NOTIMPLEMENTED(); | 407 NOTIMPLEMENTED(); |
| 408 } | 408 } |
| 409 | 409 |
| 410 void WmShellMus::SetPartialMagnifierEnabled(bool enabled) { |
| 411 NOTIMPLEMENTED(); |
| 412 } |
| 413 |
| 410 void WmShellMus::CreatePointerWatcherAdapter() { | 414 void WmShellMus::CreatePointerWatcherAdapter() { |
| 411 // Only needed in WmShellAura, which has specific creation order. | 415 // Only needed in WmShellAura, which has specific creation order. |
| 412 } | 416 } |
| 413 | 417 |
| 414 void WmShellMus::CreatePrimaryHost() {} | 418 void WmShellMus::CreatePrimaryHost() {} |
| 415 | 419 |
| 416 void WmShellMus::InitHosts(const ShellInitParams& init_params) { | 420 void WmShellMus::InitHosts(const ShellInitParams& init_params) { |
| 417 window_manager_->CreatePrimaryRootWindowController( | 421 window_manager_->CreatePrimaryRootWindowController( |
| 418 base::WrapUnique(init_params.primary_window_tree_host)); | 422 base::WrapUnique(init_params.primary_window_tree_host)); |
| 419 } | 423 } |
| 420 } // namespace mus | 424 } // namespace mus |
| 421 } // namespace ash | 425 } // namespace ash |
| OLD | NEW |