| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 CC_SURFACES_COMPOSITOR_FRAME_SINK_SUPPORT_H_ | 5 #ifndef CC_SURFACES_COMPOSITOR_FRAME_SINK_SUPPORT_H_ |
| 6 #define CC_SURFACES_COMPOSITOR_FRAME_SINK_SUPPORT_H_ | 6 #define CC_SURFACES_COMPOSITOR_FRAME_SINK_SUPPORT_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "cc/output/compositor_frame.h" | 10 #include "cc/output/compositor_frame.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 const FrameSinkId& frame_sink_id() const { return frame_sink_id_; } | 36 const FrameSinkId& frame_sink_id() const { return frame_sink_id_; } |
| 37 | 37 |
| 38 void EvictFrame(); | 38 void EvictFrame(); |
| 39 void SetNeedsBeginFrame(bool needs_begin_frame); | 39 void SetNeedsBeginFrame(bool needs_begin_frame); |
| 40 void SubmitCompositorFrame(const LocalFrameId& local_frame_id, | 40 void SubmitCompositorFrame(const LocalFrameId& local_frame_id, |
| 41 CompositorFrame frame); | 41 CompositorFrame frame); |
| 42 void Require(const LocalFrameId& local_frame_id, | 42 void Require(const LocalFrameId& local_frame_id, |
| 43 const SurfaceSequence& sequence); | 43 const SurfaceSequence& sequence); |
| 44 void Satisfy(const SurfaceSequence& sequence); | 44 void Satisfy(const SurfaceSequence& sequence); |
| 45 void BeginFrameDidNotDraw(const BeginFrameAck& ack); |
| 45 void AddChildFrameSink(const FrameSinkId& child_frame_sink_id); | 46 void AddChildFrameSink(const FrameSinkId& child_frame_sink_id); |
| 46 void RemoveChildFrameSink(const FrameSinkId& child_frame_sink_id); | 47 void RemoveChildFrameSink(const FrameSinkId& child_frame_sink_id); |
| 47 | 48 |
| 48 private: | 49 private: |
| 49 void DidReceiveCompositorFrameAck(); | 50 void DidReceiveCompositorFrameAck(); |
| 50 | 51 |
| 51 // DisplayClient implementation. | 52 // DisplayClient implementation. |
| 52 void DisplayOutputSurfaceLost() override; | 53 void DisplayOutputSurfaceLost() override; |
| 53 void DisplayWillDrawAndSwap(bool will_draw_and_swap, | 54 void DisplayWillDrawAndSwap(bool will_draw_and_swap, |
| 54 const RenderPassList& render_passes) override; | 55 const RenderPassList& render_passes) override; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 std::unordered_set<FrameSinkId, FrameSinkIdHash> child_frame_sinks_; | 102 std::unordered_set<FrameSinkId, FrameSinkIdHash> child_frame_sinks_; |
| 102 | 103 |
| 103 base::WeakPtrFactory<CompositorFrameSinkSupport> weak_factory_; | 104 base::WeakPtrFactory<CompositorFrameSinkSupport> weak_factory_; |
| 104 | 105 |
| 105 DISALLOW_COPY_AND_ASSIGN(CompositorFrameSinkSupport); | 106 DISALLOW_COPY_AND_ASSIGN(CompositorFrameSinkSupport); |
| 106 }; | 107 }; |
| 107 | 108 |
| 108 } // namespace cc | 109 } // namespace cc |
| 109 | 110 |
| 110 #endif // CC_SURFACES_COMPOSITOR_FRAME_SINK_SUPPORT_H_ | 111 #endif // CC_SURFACES_COMPOSITOR_FRAME_SINK_SUPPORT_H_ |
| OLD | NEW |