| 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 "components/mus/public/cpp/input_devices/input_device_client.h" | 5 #include "services/ui/public/cpp/input_devices/input_device_client.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 | 8 |
| 9 namespace mus { | 9 namespace mus { |
| 10 | 10 |
| 11 InputDeviceClient::InputDeviceClient() : binding_(this) { | 11 InputDeviceClient::InputDeviceClient() : binding_(this) { |
| 12 InputDeviceManager::SetInstance(this); | 12 InputDeviceManager::SetInstance(this); |
| 13 } | 13 } |
| 14 | 14 |
| 15 InputDeviceClient::~InputDeviceClient() { | 15 InputDeviceClient::~InputDeviceClient() { |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 return device_lists_complete_; | 103 return device_lists_complete_; |
| 104 } | 104 } |
| 105 | 105 |
| 106 bool InputDeviceClient::AreTouchscreensEnabled() const { | 106 bool InputDeviceClient::AreTouchscreensEnabled() const { |
| 107 // TODO(kylechar): This obviously isn't right. We either need to pass this | 107 // TODO(kylechar): This obviously isn't right. We either need to pass this |
| 108 // state around or modify the interface. | 108 // state around or modify the interface. |
| 109 return true; | 109 return true; |
| 110 } | 110 } |
| 111 | 111 |
| 112 } // namespace mus | 112 } // namespace mus |
| OLD | NEW |