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

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

Issue 2676353002: MojoCompositorFrameSinkPrivate should support copy requests (Closed)
Patch Set: c Created 3 years, 10 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "components/display_compositor/gpu_compositor_frame_sink.h" 5 #include "components/display_compositor/gpu_compositor_frame_sink.h"
6 6
7 #include "cc/surfaces/surface_reference.h" 7 #include "cc/surfaces/surface_reference.h"
8 8
9 namespace display_compositor { 9 namespace display_compositor {
10 10
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 private_connection_lost_); 143 private_connection_lost_);
144 } 144 }
145 145
146 void GpuCompositorFrameSink::OnPrivateConnectionLost() { 146 void GpuCompositorFrameSink::OnPrivateConnectionLost() {
147 private_connection_lost_ = true; 147 private_connection_lost_ = true;
148 // Request destruction of |this| only if both connections are lost. 148 // Request destruction of |this| only if both connections are lost.
149 delegate_->OnPrivateConnectionLost(support_.frame_sink_id(), 149 delegate_->OnPrivateConnectionLost(support_.frame_sink_id(),
150 client_connection_lost_); 150 client_connection_lost_);
151 } 151 }
152 152
153 void GpuCompositorFrameSink::RequestCopyOfSurface(
154 std::unique_ptr<cc::CopyOutputRequest> request,
155 const RequestCopyOfSurfaceCallback& callback) {
156 request->set_result_callback(callback);
157 support_.RequestCopyOfSurface(std::move(request));
158 }
159
160 void GpuCompositorFrameSink::ReleaseCopyOfSurface(
161 const gpu::Mailbox& mailbox,
162 const ::gpu::SyncToken& sync_token,
163 bool is_lost) {
164 support_.ReleaseCopyOfSurface(mailbox, sync_token, is_lost);
165 }
166
153 } // namespace display_compositor 167 } // namespace display_compositor
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698