| 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 #ifndef SERVICES_UI_DISPLAY_PLATFORM_SCREEN_OZONE_H_ | 5 #ifndef SERVICES_UI_DISPLAY_PLATFORM_SCREEN_OZONE_H_ |
| 6 #define SERVICES_UI_DISPLAY_PLATFORM_SCREEN_OZONE_H_ | 6 #define SERVICES_UI_DISPLAY_PLATFORM_SCREEN_OZONE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <set> | 10 #include <set> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "mojo/public/cpp/bindings/binding_set.h" | 15 #include "mojo/public/cpp/bindings/binding_set.h" |
| 16 #include "services/shell/public/cpp/connection.h" | 16 #include "services/service_manager/public/cpp/connection.h" |
| 17 #include "services/shell/public/cpp/interface_factory.h" | 17 #include "services/service_manager/public/cpp/interface_factory.h" |
| 18 #include "services/ui/display/platform_screen.h" | 18 #include "services/ui/display/platform_screen.h" |
| 19 #include "services/ui/public/interfaces/display/display_controller.mojom.h" | 19 #include "services/ui/public/interfaces/display/display_controller.mojom.h" |
| 20 #include "ui/display/chromeos/display_configurator.h" | 20 #include "ui/display/chromeos/display_configurator.h" |
| 21 #include "ui/display/display.h" | 21 #include "ui/display/display.h" |
| 22 #include "ui/display/types/fake_display_controller.h" | 22 #include "ui/display/types/fake_display_controller.h" |
| 23 | 23 |
| 24 namespace display { | 24 namespace display { |
| 25 | 25 |
| 26 // PlatformScreenOzone provides the necessary functionality to configure all | 26 // PlatformScreenOzone provides the necessary functionality to configure all |
| 27 // attached physical displays on the ozone platform. | 27 // attached physical displays on the ozone platform. |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 gfx::Point next_display_origin_; | 122 gfx::Point next_display_origin_; |
| 123 | 123 |
| 124 mojo::BindingSet<mojom::DisplayController> bindings_; | 124 mojo::BindingSet<mojom::DisplayController> bindings_; |
| 125 | 125 |
| 126 DISALLOW_COPY_AND_ASSIGN(PlatformScreenOzone); | 126 DISALLOW_COPY_AND_ASSIGN(PlatformScreenOzone); |
| 127 }; | 127 }; |
| 128 | 128 |
| 129 } // namespace display | 129 } // namespace display |
| 130 | 130 |
| 131 #endif // SERVICES_UI_DISPLAY_PLATFORM_SCREEN_OZONE_H_ | 131 #endif // SERVICES_UI_DISPLAY_PLATFORM_SCREEN_OZONE_H_ |
| OLD | NEW |