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 #ifndef CC_TREES_CHANNEL_MAIN_H_ | 5 #ifndef CC_TREES_CHANNEL_MAIN_H_ |
6 #define CC_TREES_CHANNEL_MAIN_H_ | 6 #define CC_TREES_CHANNEL_MAIN_H_ |
7 | 7 |
8 #include "cc/base/cc_export.h" | 8 #include "cc/base/cc_export.h" |
9 #include "cc/base/completion_event.h" | 9 #include "cc/base/completion_event.h" |
10 #include "cc/input/top_controls_state.h" | 10 #include "cc/input/top_controls_state.h" |
11 #include "cc/output/output_surface.h" | 11 #include "cc/output/compositor_frame_sink.h" |
12 #include "cc/scheduler/begin_frame_source.h" | 12 #include "cc/scheduler/begin_frame_source.h" |
13 #include "cc/scheduler/commit_earlyout_reason.h" | 13 #include "cc/scheduler/commit_earlyout_reason.h" |
14 #include "cc/trees/proxy_common.h" | 14 #include "cc/trees/proxy_common.h" |
15 | 15 |
16 namespace cc { | 16 namespace cc { |
17 | 17 |
18 class LayerTreeMutator; | 18 class LayerTreeMutator; |
19 | 19 |
20 // ChannelMain and ChannelImpl provide an abstract communication layer for | 20 // ChannelMain and ChannelImpl provide an abstract communication layer for |
21 // the main and impl side of the compositor. | 21 // the main and impl side of the compositor. |
22 // | 22 // |
23 // The communication sequence between the 2 sides is: | 23 // The communication sequence between the 2 sides is: |
24 // | 24 // |
25 // LayerTreeHost<-->ProxyMain<-->ChannelMain | 25 // LayerTreeHost<-->ProxyMain<-->ChannelMain |
26 // | | 26 // | |
27 // | | 27 // | |
28 // ChannelImpl<-->ProxyImpl<-->LayerTreeHostImpl | 28 // ChannelImpl<-->ProxyImpl<-->LayerTreeHostImpl |
29 | 29 |
30 class CC_EXPORT ChannelMain { | 30 class CC_EXPORT ChannelMain { |
31 public: | 31 public: |
32 virtual ~ChannelMain() {} | 32 virtual ~ChannelMain() {} |
33 | 33 |
34 // Interface for commands sent to ProxyImpl | 34 // Interface for commands sent to ProxyImpl |
35 virtual void UpdateTopControlsStateOnImpl(TopControlsState constraints, | 35 virtual void UpdateTopControlsStateOnImpl(TopControlsState constraints, |
36 TopControlsState current, | 36 TopControlsState current, |
37 bool animate) = 0; | 37 bool animate) = 0; |
38 virtual void InitializeOutputSurfaceOnImpl(OutputSurface* output_surface) = 0; | 38 virtual void InitializeCompositorFrameSinkOnImpl( |
| 39 CompositorFrameSink* compositor_frame_sink) = 0; |
39 virtual void InitializeMutatorOnImpl( | 40 virtual void InitializeMutatorOnImpl( |
40 std::unique_ptr<LayerTreeMutator> mutator) = 0; | 41 std::unique_ptr<LayerTreeMutator> mutator) = 0; |
41 virtual void MainThreadHasStoppedFlingingOnImpl() = 0; | 42 virtual void MainThreadHasStoppedFlingingOnImpl() = 0; |
42 virtual void SetInputThrottledUntilCommitOnImpl(bool is_throttled) = 0; | 43 virtual void SetInputThrottledUntilCommitOnImpl(bool is_throttled) = 0; |
43 virtual void SetDeferCommitsOnImpl(bool defer_commits) = 0; | 44 virtual void SetDeferCommitsOnImpl(bool defer_commits) = 0; |
44 virtual void SetVisibleOnImpl(bool visible) = 0; | 45 virtual void SetVisibleOnImpl(bool visible) = 0; |
45 virtual void ReleaseOutputSurfaceOnImpl(CompletionEvent* completion) = 0; | 46 virtual void ReleaseCompositorFrameSinkOnImpl( |
| 47 CompletionEvent* completion) = 0; |
46 virtual void MainFrameWillHappenOnImplForTesting( | 48 virtual void MainFrameWillHappenOnImplForTesting( |
47 CompletionEvent* completion, | 49 CompletionEvent* completion, |
48 bool* main_frame_will_happen) = 0; | 50 bool* main_frame_will_happen) = 0; |
49 virtual void SetNeedsRedrawOnImpl(const gfx::Rect& damage_rect) = 0; | 51 virtual void SetNeedsRedrawOnImpl(const gfx::Rect& damage_rect) = 0; |
50 virtual void SetNeedsCommitOnImpl() = 0; | 52 virtual void SetNeedsCommitOnImpl() = 0; |
51 virtual void BeginMainFrameAbortedOnImpl( | 53 virtual void BeginMainFrameAbortedOnImpl( |
52 CommitEarlyOutReason reason, | 54 CommitEarlyOutReason reason, |
53 base::TimeTicks main_thread_start_time, | 55 base::TimeTicks main_thread_start_time, |
54 std::vector<std::unique_ptr<SwapPromise>> swap_promises) = 0; | 56 std::vector<std::unique_ptr<SwapPromise>> swap_promises) = 0; |
55 virtual void NotifyReadyToCommitOnImpl(CompletionEvent* completion, | 57 virtual void NotifyReadyToCommitOnImpl(CompletionEvent* completion, |
56 LayerTreeHost* layer_tree_host, | 58 LayerTreeHost* layer_tree_host, |
57 base::TimeTicks main_thread_start_time, | 59 base::TimeTicks main_thread_start_time, |
58 bool hold_commit_for_activation) = 0; | 60 bool hold_commit_for_activation) = 0; |
59 | 61 |
60 // Must be called before using the channel. | 62 // Must be called before using the channel. |
61 virtual void SynchronouslyInitializeImpl( | 63 virtual void SynchronouslyInitializeImpl( |
62 LayerTreeHost* layer_tree_host, | 64 LayerTreeHost* layer_tree_host, |
63 std::unique_ptr<BeginFrameSource> external_begin_frame_source) = 0; | 65 std::unique_ptr<BeginFrameSource> external_begin_frame_source) = 0; |
64 | 66 |
65 // Must be called before deleting the channel. | 67 // Must be called before deleting the channel. |
66 virtual void SynchronouslyCloseImpl() = 0; | 68 virtual void SynchronouslyCloseImpl() = 0; |
67 }; | 69 }; |
68 | 70 |
69 } // namespace cc | 71 } // namespace cc |
70 | 72 |
71 #endif // CC_TREES_CHANNEL_MAIN_H_ | 73 #endif // CC_TREES_CHANNEL_MAIN_H_ |
OLD | NEW |