Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: components/display_compositor/gpu_offscreen_compositor_frame_sink.cc

Issue 2654693003: Decouple GpuCompositorFrameSink from DisplayCompositor (Closed)
Patch Set: Refactor code Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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/surfaces/gpu_offscreen_compositor_frame_sink.h" 5 #include "components/display_compositor/gpu_offscreen_compositor_frame_sink.h"
6 6
7 namespace ui { 7 namespace display_compositor {
8 8
9 GpuOffscreenCompositorFrameSink::GpuOffscreenCompositorFrameSink( 9 GpuOffscreenCompositorFrameSink::GpuOffscreenCompositorFrameSink(
10 DisplayCompositor* display_compositor, 10 GpuCompositorFrameSinkDelegate* delegate,
11 cc::SurfaceManager* surface_manager,
11 const cc::FrameSinkId& frame_sink_id, 12 const cc::FrameSinkId& frame_sink_id,
12 cc::mojom::MojoCompositorFrameSinkRequest request, 13 cc::mojom::MojoCompositorFrameSinkRequest request,
13 cc::mojom::MojoCompositorFrameSinkPrivateRequest 14 cc::mojom::MojoCompositorFrameSinkPrivateRequest
14 compositor_frame_sink_private_request, 15 compositor_frame_sink_private_request,
15 cc::mojom::MojoCompositorFrameSinkClientPtr client) 16 cc::mojom::MojoCompositorFrameSinkClientPtr client)
16 : GpuCompositorFrameSink(display_compositor, 17 : GpuCompositorFrameSink(delegate,
18 surface_manager,
17 frame_sink_id, 19 frame_sink_id,
18 nullptr, 20 nullptr,
19 nullptr, 21 nullptr,
20 std::move(compositor_frame_sink_private_request), 22 std::move(compositor_frame_sink_private_request),
21 std::move(client)), 23 std::move(client)),
22 binding_(this, std::move(request)) { 24 binding_(this, std::move(request)) {
23 binding_.set_connection_error_handler( 25 binding_.set_connection_error_handler(
24 base::Bind(&GpuOffscreenCompositorFrameSink::OnClientConnectionLost, 26 base::Bind(&GpuOffscreenCompositorFrameSink::OnClientConnectionLost,
25 base::Unretained(this))); 27 base::Unretained(this)));
26 } 28 }
27 29
28 GpuOffscreenCompositorFrameSink::~GpuOffscreenCompositorFrameSink() = default; 30 GpuOffscreenCompositorFrameSink::~GpuOffscreenCompositorFrameSink() = default;
29 31
30 } // namespace ui 32 } // namespace display_compositor
OLDNEW
« no previous file with comments | « components/display_compositor/gpu_offscreen_compositor_frame_sink.h ('k') | services/ui/surfaces/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698