| OLD | NEW |
| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 private_connection_lost_); | 88 private_connection_lost_); |
| 89 } | 89 } |
| 90 | 90 |
| 91 void GpuCompositorFrameSink::OnPrivateConnectionLost() { | 91 void GpuCompositorFrameSink::OnPrivateConnectionLost() { |
| 92 private_connection_lost_ = true; | 92 private_connection_lost_ = true; |
| 93 // Request destruction of |this| only if both connections are lost. | 93 // Request destruction of |this| only if both connections are lost. |
| 94 delegate_->OnPrivateConnectionLost(support_->frame_sink_id(), | 94 delegate_->OnPrivateConnectionLost(support_->frame_sink_id(), |
| 95 client_connection_lost_); | 95 client_connection_lost_); |
| 96 } | 96 } |
| 97 | 97 |
| 98 void GpuCompositorFrameSink::RequestCopyOfSurface( |
| 99 std::unique_ptr<cc::CopyOutputRequest> request) { |
| 100 support_->RequestCopyOfSurface(std::move(request)); |
| 101 } |
| 102 |
| 98 } // namespace display_compositor | 103 } // namespace display_compositor |
| OLD | NEW |