| 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/ws/touch_controller.h" | 5 #include "services/ui/ws/touch_controller.h" |
| 6 | 6 |
| 7 #include <set> | 7 #include <set> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "components/mus/ws/display.h" | 11 #include "services/ui/ws/display.h" |
| 12 #include "components/mus/ws/display_manager.h" | 12 #include "services/ui/ws/display_manager.h" |
| 13 #include "ui/events/devices/device_data_manager.h" | 13 #include "ui/events/devices/device_data_manager.h" |
| 14 #include "ui/events/devices/touchscreen_device.h" | 14 #include "ui/events/devices/touchscreen_device.h" |
| 15 #include "ui/gfx/geometry/size.h" | 15 #include "ui/gfx/geometry/size.h" |
| 16 #include "ui/gfx/transform.h" | 16 #include "ui/gfx/transform.h" |
| 17 | 17 |
| 18 namespace mus { | 18 namespace mus { |
| 19 namespace ws { | 19 namespace ws { |
| 20 | 20 |
| 21 namespace { | 21 namespace { |
| 22 | 22 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 } | 96 } |
| 97 } | 97 } |
| 98 } | 98 } |
| 99 | 99 |
| 100 void TouchController::OnTouchscreenDeviceConfigurationChanged() { | 100 void TouchController::OnTouchscreenDeviceConfigurationChanged() { |
| 101 UpdateTouchTransforms(); | 101 UpdateTouchTransforms(); |
| 102 } | 102 } |
| 103 | 103 |
| 104 } // namespace ws | 104 } // namespace ws |
| 105 } // namespace mus | 105 } // namespace mus |
| OLD | NEW |