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 #include "services/ui/ws/platform_display.h" | 5 #include "services/ui/ws/platform_display.h" |
6 | 6 |
7 #include "base/numerics/safe_conversions.h" | 7 #include "base/numerics/safe_conversions.h" |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 #include "cc/ipc/quads.mojom.h" | 9 #include "cc/ipc/quads.mojom.h" |
10 #include "cc/output/copy_output_request.h" | 10 #include "cc/output/copy_output_request.h" |
11 #include "cc/output/delegated_frame_data.h" | 11 #include "cc/output/delegated_frame_data.h" |
12 #include "services/shell/public/cpp/connection.h" | 12 #include "services/shell/public/cpp/connection.h" |
13 #include "services/shell/public/cpp/connector.h" | 13 #include "services/shell/public/cpp/connector.h" |
14 #include "services/ui/gles2/gpu_state.h" | |
15 #include "services/ui/public/interfaces/gpu.mojom.h" | 14 #include "services/ui/public/interfaces/gpu.mojom.h" |
16 #include "services/ui/surfaces/display_compositor.h" | 15 #include "services/ui/surfaces/display_compositor.h" |
17 #include "services/ui/surfaces/surfaces_state.h" | 16 #include "services/ui/surfaces/surfaces_state.h" |
18 #include "services/ui/ws/platform_display_factory.h" | 17 #include "services/ui/ws/platform_display_factory.h" |
19 #include "services/ui/ws/platform_display_init_params.h" | 18 #include "services/ui/ws/platform_display_init_params.h" |
20 #include "services/ui/ws/server_window.h" | 19 #include "services/ui/ws/server_window.h" |
21 #include "services/ui/ws/window_coordinate_conversions.h" | 20 #include "services/ui/ws/window_coordinate_conversions.h" |
22 #include "third_party/skia/include/core/SkXfermode.h" | 21 #include "third_party/skia/include/core/SkXfermode.h" |
23 #include "ui/base/cursor/cursor_loader.h" | 22 #include "ui/base/cursor/cursor_loader.h" |
24 #include "ui/display/display.h" | 23 #include "ui/display/display.h" |
(...skipping 27 matching lines...) Expand all Loading... |
52 | 51 |
53 return new DefaultPlatformDisplay(init_params); | 52 return new DefaultPlatformDisplay(init_params); |
54 } | 53 } |
55 | 54 |
56 DefaultPlatformDisplay::DefaultPlatformDisplay( | 55 DefaultPlatformDisplay::DefaultPlatformDisplay( |
57 const PlatformDisplayInitParams& init_params) | 56 const PlatformDisplayInitParams& init_params) |
58 : id_(init_params.display_id), | 57 : id_(init_params.display_id), |
59 #if !defined(OS_ANDROID) | 58 #if !defined(OS_ANDROID) |
60 cursor_loader_(ui::CursorLoader::Create()), | 59 cursor_loader_(ui::CursorLoader::Create()), |
61 #endif | 60 #endif |
62 frame_generator_(new FrameGenerator(this, | 61 frame_generator_(new FrameGenerator(this, init_params.surfaces_state)) { |
63 init_params.gpu_state, | |
64 init_params.surfaces_state)) { | |
65 metrics_.bounds = init_params.display_bounds; | 62 metrics_.bounds = init_params.display_bounds; |
66 // TODO(rjkroege): Preserve the display_id when Ozone platform can use it. | 63 // TODO(rjkroege): Preserve the display_id when Ozone platform can use it. |
67 } | 64 } |
68 | 65 |
69 void DefaultPlatformDisplay::Init(PlatformDisplayDelegate* delegate) { | 66 void DefaultPlatformDisplay::Init(PlatformDisplayDelegate* delegate) { |
70 delegate_ = delegate; | 67 delegate_ = delegate; |
71 | 68 |
72 #if defined(OS_WIN) | 69 #if defined(OS_WIN) |
73 platform_window_.reset(new ui::WinWindow(this, metrics_.bounds)); | 70 platform_window_.reset(new ui::WinWindow(this, metrics_.bounds)); |
74 #elif defined(USE_X11) | 71 #elif defined(USE_X11) |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 return delegate_ ? delegate_->IsInHighContrastMode() : false; | 277 return delegate_ ? delegate_->IsInHighContrastMode() : false; |
281 } | 278 } |
282 | 279 |
283 const ViewportMetrics& DefaultPlatformDisplay::GetViewportMetrics() { | 280 const ViewportMetrics& DefaultPlatformDisplay::GetViewportMetrics() { |
284 return metrics_; | 281 return metrics_; |
285 } | 282 } |
286 | 283 |
287 } // namespace ws | 284 } // namespace ws |
288 | 285 |
289 } // namespace ui | 286 } // namespace ui |
OLD | NEW |