| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/touch/touch_transformer_controller.h" | 5 #include "ash/touch/touch_transformer_controller.h" |
| 6 | 6 |
| 7 #include "ash/display/window_tree_host_manager.h" | 7 #include "ash/display/window_tree_host_manager.h" |
| 8 #include "ash/host/ash_window_tree_host.h" | 8 #include "ash/host/ash_window_tree_host.h" |
| 9 #include "ash/root_window_controller.h" | 9 #include "ash/root_window_controller.h" |
| 10 #include "ash/shell.h" | 10 #include "ash/shell.h" |
| 11 #include "ui/aura/window_tree_host.h" | 11 #include "ui/aura/window_tree_host.h" |
| 12 #include "ui/display/chromeos/display_configurator.h" | 12 #include "ui/display/display_layout.h" |
| 13 #include "ui/display/manager/display_layout.h" | 13 #include "ui/display/manager/chromeos/display_configurator.h" |
| 14 #include "ui/display/manager/display_manager.h" | 14 #include "ui/display/manager/display_manager.h" |
| 15 #include "ui/display/types/display_constants.h" | 15 #include "ui/display/types/display_constants.h" |
| 16 #include "ui/display/types/display_snapshot.h" | 16 #include "ui/display/types/display_snapshot.h" |
| 17 #include "ui/events/devices/device_data_manager.h" | 17 #include "ui/events/devices/device_data_manager.h" |
| 18 | 18 |
| 19 namespace ash { | 19 namespace ash { |
| 20 | 20 |
| 21 namespace { | 21 namespace { |
| 22 | 22 |
| 23 display::DisplayManager* GetDisplayManager() { | 23 display::DisplayManager* GetDisplayManager() { |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 | 220 |
| 221 void TouchTransformerController::OnDisplaysInitialized() { | 221 void TouchTransformerController::OnDisplaysInitialized() { |
| 222 UpdateTouchTransformer(); | 222 UpdateTouchTransformer(); |
| 223 } | 223 } |
| 224 | 224 |
| 225 void TouchTransformerController::OnDisplayConfigurationChanged() { | 225 void TouchTransformerController::OnDisplayConfigurationChanged() { |
| 226 UpdateTouchTransformer(); | 226 UpdateTouchTransformer(); |
| 227 } | 227 } |
| 228 | 228 |
| 229 } // namespace ash | 229 } // namespace ash |
| OLD | NEW |