| 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_SCREEN_MANAGER_OZONE_INTERNAL_H_ | 5 #ifndef SERVICES_UI_DISPLAY_SCREEN_MANAGER_OZONE_INTERNAL_H_ |
| 6 #define SERVICES_UI_DISPLAY_SCREEN_MANAGER_OZONE_INTERNAL_H_ | 6 #define SERVICES_UI_DISPLAY_SCREEN_MANAGER_OZONE_INTERNAL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "mojo/public/cpp/bindings/binding_set.h" | 13 #include "mojo/public/cpp/bindings/binding_set.h" |
| 14 #include "services/service_manager/public/cpp/connection.h" | |
| 15 #include "services/service_manager/public/cpp/interface_factory.h" | 14 #include "services/service_manager/public/cpp/interface_factory.h" |
| 16 #include "services/ui/display/screen_manager.h" | 15 #include "services/ui/display/screen_manager.h" |
| 17 #include "services/ui/display/viewport_metrics.h" | 16 #include "services/ui/display/viewport_metrics.h" |
| 18 #include "services/ui/public/interfaces/display/display_controller.mojom.h" | 17 #include "services/ui/public/interfaces/display/display_controller.mojom.h" |
| 19 #include "services/ui/public/interfaces/display/output_protection.mojom.h" | 18 #include "services/ui/public/interfaces/display/output_protection.mojom.h" |
| 20 #include "services/ui/public/interfaces/display/test_display_controller.mojom.h" | 19 #include "services/ui/public/interfaces/display/test_display_controller.mojom.h" |
| 21 #include "ui/display/display.h" | 20 #include "ui/display/display.h" |
| 22 #include "ui/display/display_observer.h" | 21 #include "ui/display/display_observer.h" |
| 23 #include "ui/display/manager/chromeos/display_configurator.h" | 22 #include "ui/display/manager/chromeos/display_configurator.h" |
| 24 #include "ui/display/manager/display_manager.h" | 23 #include "ui/display/manager/display_manager.h" |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 | 127 |
| 129 mojo::BindingSet<mojom::DisplayController> controller_bindings_; | 128 mojo::BindingSet<mojom::DisplayController> controller_bindings_; |
| 130 mojo::BindingSet<mojom::TestDisplayController> test_bindings_; | 129 mojo::BindingSet<mojom::TestDisplayController> test_bindings_; |
| 131 | 130 |
| 132 DISALLOW_COPY_AND_ASSIGN(ScreenManagerOzoneInternal); | 131 DISALLOW_COPY_AND_ASSIGN(ScreenManagerOzoneInternal); |
| 133 }; | 132 }; |
| 134 | 133 |
| 135 } // namespace display | 134 } // namespace display |
| 136 | 135 |
| 137 #endif // SERVICES_UI_DISPLAY_SCREEN_MANAGER_OZONE_INTERNAL_H_ | 136 #endif // SERVICES_UI_DISPLAY_SCREEN_MANAGER_OZONE_INTERNAL_H_ |
| OLD | NEW |