| 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_WS_PLATFORM_DISPLAY_INIT_PARAMS_H_ | 5 #ifndef SERVICES_UI_WS_PLATFORM_DISPLAY_INIT_PARAMS_H_ |
| 6 #define SERVICES_UI_WS_PLATFORM_DISPLAY_INIT_PARAMS_H_ | 6 #define SERVICES_UI_WS_PLATFORM_DISPLAY_INIT_PARAMS_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "services/ui/display/viewport_metrics.h" | 11 #include "services/ui/display/viewport_metrics.h" |
| 12 #include "services/ui/ws/ids.h" |
| 12 | 13 |
| 13 namespace ui { | 14 namespace ui { |
| 14 | 15 |
| 15 class DisplayCompositor; | 16 class DisplayCompositor; |
| 16 class GpuState; | |
| 17 | 17 |
| 18 namespace ws { | 18 namespace ws { |
| 19 | 19 |
| 20 struct PlatformDisplayInitParams { | 20 struct PlatformDisplayInitParams { |
| 21 PlatformDisplayInitParams(); | 21 PlatformDisplayInitParams(); |
| 22 PlatformDisplayInitParams(const PlatformDisplayInitParams& other); |
| 22 ~PlatformDisplayInitParams(); | 23 ~PlatformDisplayInitParams(); |
| 23 | 24 |
| 24 scoped_refptr<DisplayCompositor> display_compositor; | 25 scoped_refptr<DisplayCompositor> display_compositor; |
| 25 | 26 |
| 26 int64_t display_id; | 27 int64_t display_id; |
| 28 WindowId root_window_id; |
| 27 display::ViewportMetrics metrics; | 29 display::ViewportMetrics metrics; |
| 28 }; | 30 }; |
| 29 | 31 |
| 30 } // namespace ws | 32 } // namespace ws |
| 31 } // namespace ui | 33 } // namespace ui |
| 32 | 34 |
| 33 #endif // SERVICES_UI_WS_PLATFORM_DISPLAY_INIT_PARAMS_H_ | 35 #endif // SERVICES_UI_WS_PLATFORM_DISPLAY_INIT_PARAMS_H_ |
| OLD | NEW |