| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/display/display_change_observer_chromeos.h" | 5 #include "ash/display/display_change_observer_chromeos.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 return kThresholdTable[i].device_scale_factor; | 280 return kThresholdTable[i].device_scale_factor; |
| 281 } | 281 } |
| 282 return 1.0f; | 282 return 1.0f; |
| 283 } | 283 } |
| 284 | 284 |
| 285 void DisplayChangeObserver::OnTouchscreenDeviceConfigurationChanged() { | 285 void DisplayChangeObserver::OnTouchscreenDeviceConfigurationChanged() { |
| 286 OnDisplayModeChanged( | 286 OnDisplayModeChanged( |
| 287 Shell::GetInstance()->display_configurator()->cached_displays()); | 287 Shell::GetInstance()->display_configurator()->cached_displays()); |
| 288 } | 288 } |
| 289 | 289 |
| 290 void DisplayChangeObserver::OnKeyboardDeviceConfigurationChanged() { | |
| 291 } | |
| 292 | |
| 293 void DisplayChangeObserver::OnMouseDeviceConfigurationChanged() { | |
| 294 } | |
| 295 | |
| 296 void DisplayChangeObserver::OnTouchpadDeviceConfigurationChanged() { | |
| 297 } | |
| 298 | |
| 299 } // namespace ash | 290 } // namespace ash |
| OLD | NEW |