| 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 #ifndef UI_DISPLAY_CHROMEOS_DISPLAY_CONFIGURATOR_H_ | 5 #ifndef UI_DISPLAY_CHROMEOS_DISPLAY_CONFIGURATOR_H_ |
| 6 #define UI_DISPLAY_CHROMEOS_DISPLAY_CONFIGURATOR_H_ | 6 #define UI_DISPLAY_CHROMEOS_DISPLAY_CONFIGURATOR_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/event_types.h" | 14 #include "base/event_types.h" |
| 15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
| 17 #include "base/timer/timer.h" | 17 #include "base/timer/timer.h" |
| 18 #include "third_party/cros_system_api/dbus/service_constants.h" | 18 #include "third_party/cros_system_api/dbus/service_constants.h" |
| 19 #include "ui/display/display_export.h" | 19 #include "ui/display/display_export.h" |
| 20 #include "ui/display/types/chromeos/native_display_observer.h" | |
| 21 #include "ui/display/types/display_constants.h" | 20 #include "ui/display/types/display_constants.h" |
| 21 #include "ui/display/types/native_display_observer.h" |
| 22 #include "ui/gfx/geometry/size.h" | 22 #include "ui/gfx/geometry/size.h" |
| 23 | 23 |
| 24 namespace gfx { | 24 namespace gfx { |
| 25 class Point; | 25 class Point; |
| 26 class Size; | 26 class Size; |
| 27 } | 27 } |
| 28 | 28 |
| 29 namespace ui { | 29 namespace ui { |
| 30 class DisplayMode; | 30 class DisplayMode; |
| 31 class DisplaySnapshot; | 31 class DisplaySnapshot; |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 | 339 |
| 340 // Display protection requests of each client. | 340 // Display protection requests of each client. |
| 341 ProtectionRequests client_protection_requests_; | 341 ProtectionRequests client_protection_requests_; |
| 342 | 342 |
| 343 DISALLOW_COPY_AND_ASSIGN(DisplayConfigurator); | 343 DISALLOW_COPY_AND_ASSIGN(DisplayConfigurator); |
| 344 }; | 344 }; |
| 345 | 345 |
| 346 } // namespace ui | 346 } // namespace ui |
| 347 | 347 |
| 348 #endif // UI_DISPLAY_CHROMEOS_DISPLAY_CONFIGURATOR_H_ | 348 #endif // UI_DISPLAY_CHROMEOS_DISPLAY_CONFIGURATOR_H_ |
| OLD | NEW |