| 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 #ifndef SERVICES_UI_PUBLIC_CPP_WINDOW_COMPOSITOR_FRAME_SINK_H_ | 5 #ifndef SERVICES_UI_PUBLIC_CPP_WINDOW_COMPOSITOR_FRAME_SINK_H_ |
| 6 #define SERVICES_UI_PUBLIC_CPP_WINDOW_COMPOSITOR_FRAME_SINK_H_ | 6 #define SERVICES_UI_PUBLIC_CPP_WINDOW_COMPOSITOR_FRAME_SINK_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "cc/ipc/mojo_compositor_frame_sink.mojom.h" | 9 #include "cc/ipc/mojo_compositor_frame_sink.mojom.h" |
| 10 #include "cc/output/compositor_frame_sink.h" | 10 #include "cc/output/compositor_frame_sink.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 private: | 42 private: |
| 43 ClientCompositorFrameSink( | 43 ClientCompositorFrameSink( |
| 44 const cc::FrameSinkId& frame_sink_id, | 44 const cc::FrameSinkId& frame_sink_id, |
| 45 scoped_refptr<cc::ContextProvider> context_provider, | 45 scoped_refptr<cc::ContextProvider> context_provider, |
| 46 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager, | 46 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager, |
| 47 cc::mojom::MojoCompositorFrameSinkPtrInfo compositor_frame_sink_info, | 47 cc::mojom::MojoCompositorFrameSinkPtrInfo compositor_frame_sink_info, |
| 48 cc::mojom::MojoCompositorFrameSinkClientRequest client_request); | 48 cc::mojom::MojoCompositorFrameSinkClientRequest client_request); |
| 49 | 49 |
| 50 // cc::mojom::MojoCompositorFrameSinkClient implementation: | 50 // cc::mojom::MojoCompositorFrameSinkClient implementation: |
| 51 void DidReceiveCompositorFrameAck() override; | 51 void DidReceiveCompositorFrameAck( |
| 52 const cc::ReturnedResourceArray& resources) override; |
| 52 void OnBeginFrame(const cc::BeginFrameArgs& begin_frame_args) override; | 53 void OnBeginFrame(const cc::BeginFrameArgs& begin_frame_args) override; |
| 53 void ReclaimResources(const cc::ReturnedResourceArray& resources) override; | 54 void ReclaimResources(const cc::ReturnedResourceArray& resources) override; |
| 54 | 55 |
| 55 // cc::ExternalBeginFrameSourceClient implementation. | 56 // cc::ExternalBeginFrameSourceClient implementation. |
| 56 void OnNeedsBeginFrames(bool needs_begin_frames) override; | 57 void OnNeedsBeginFrames(bool needs_begin_frames) override; |
| 57 void OnDidFinishFrame(const cc::BeginFrameAck& ack) override; | 58 void OnDidFinishFrame(const cc::BeginFrameAck& ack) override; |
| 58 | 59 |
| 59 gfx::Size last_submitted_frame_size_; | 60 gfx::Size last_submitted_frame_size_; |
| 60 cc::LocalSurfaceId local_surface_id_; | 61 cc::LocalSurfaceId local_surface_id_; |
| 61 cc::LocalSurfaceIdAllocator id_allocator_; | 62 cc::LocalSurfaceIdAllocator id_allocator_; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 compositor_frame_sink_client); | 95 compositor_frame_sink_client); |
| 95 | 96 |
| 96 cc::mojom::MojoCompositorFrameSinkRequest compositor_frame_sink_request_; | 97 cc::mojom::MojoCompositorFrameSinkRequest compositor_frame_sink_request_; |
| 97 cc::mojom::MojoCompositorFrameSinkClientPtrInfo compositor_frame_sink_client_; | 98 cc::mojom::MojoCompositorFrameSinkClientPtrInfo compositor_frame_sink_client_; |
| 98 | 99 |
| 99 DISALLOW_COPY_AND_ASSIGN(ClientCompositorFrameSinkBinding); | 100 DISALLOW_COPY_AND_ASSIGN(ClientCompositorFrameSinkBinding); |
| 100 }; | 101 }; |
| 101 } // namespace ui | 102 } // namespace ui |
| 102 | 103 |
| 103 #endif // SERVICES_UI_PUBLIC_CPP_WINDOW_COMPOSITOR_FRAME_SINK_H_ | 104 #endif // SERVICES_UI_PUBLIC_CPP_WINDOW_COMPOSITOR_FRAME_SINK_H_ |
| OLD | NEW |