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_PROXY_IMPL_H_ | 5 #ifndef CC_TREES_PROXY_IMPL_H_ |
6 #define CC_TREES_PROXY_IMPL_H_ | 6 #define CC_TREES_PROXY_IMPL_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 // The members of this struct should be accessed on the impl thread only when | 59 // The members of this struct should be accessed on the impl thread only when |
60 // the main thread is blocked for a commit. | 60 // the main thread is blocked for a commit. |
61 struct BlockedMainCommitOnly { | 61 struct BlockedMainCommitOnly { |
62 BlockedMainCommitOnly(); | 62 BlockedMainCommitOnly(); |
63 ~BlockedMainCommitOnly(); | 63 ~BlockedMainCommitOnly(); |
64 LayerTreeHost* layer_tree_host; | 64 LayerTreeHost* layer_tree_host; |
65 }; | 65 }; |
66 | 66 |
67 // LayerTreeHostImplClient implementation | 67 // LayerTreeHostImplClient implementation |
68 void DidLoseOutputSurfaceOnImplThread() override; | 68 void DidLoseOutputSurfaceOnImplThread() override; |
69 void CommitVSyncParameters(base::TimeTicks timebase, | |
70 base::TimeDelta interval) override; | |
71 void SetBeginFrameSource(BeginFrameSource* source) override; | 69 void SetBeginFrameSource(BeginFrameSource* source) override; |
72 void SetEstimatedParentDrawTime(base::TimeDelta draw_time) override; | 70 void SetEstimatedParentDrawTime(base::TimeDelta draw_time) override; |
73 void DidSwapBuffersCompleteOnImplThread() override; | 71 void DidSwapBuffersCompleteOnImplThread() override; |
74 void OnCanDrawStateChanged(bool can_draw) override; | 72 void OnCanDrawStateChanged(bool can_draw) override; |
75 void NotifyReadyToActivate() override; | 73 void NotifyReadyToActivate() override; |
76 void NotifyReadyToDraw() override; | 74 void NotifyReadyToDraw() override; |
77 // Please call these 3 functions through | 75 // Please call these 3 functions through |
78 // LayerTreeHostImpl's SetNeedsRedraw(), SetNeedsRedrawRect() and | 76 // LayerTreeHostImpl's SetNeedsRedraw(), SetNeedsRedrawRect() and |
79 // SetNeedsOneBeginImplFrame(). | 77 // SetNeedsOneBeginImplFrame(). |
80 void SetNeedsRedrawOnImplThread() override; | 78 void SetNeedsRedrawOnImplThread() override; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 bool next_frame_is_newly_committed_frame_; | 129 bool next_frame_is_newly_committed_frame_; |
132 | 130 |
133 bool inside_draw_; | 131 bool inside_draw_; |
134 bool input_throttled_until_commit_; | 132 bool input_throttled_until_commit_; |
135 | 133 |
136 TaskRunnerProvider* task_runner_provider_; | 134 TaskRunnerProvider* task_runner_provider_; |
137 | 135 |
138 DelayedUniqueNotifier smoothness_priority_expiration_notifier_; | 136 DelayedUniqueNotifier smoothness_priority_expiration_notifier_; |
139 | 137 |
140 std::unique_ptr<BeginFrameSource> external_begin_frame_source_; | 138 std::unique_ptr<BeginFrameSource> external_begin_frame_source_; |
141 std::unique_ptr<BeginFrameSource> unthrottled_begin_frame_source_; | |
142 std::unique_ptr<SyntheticBeginFrameSource> synthetic_begin_frame_source_; | |
143 | 139 |
144 RenderingStatsInstrumentation* rendering_stats_instrumentation_; | 140 RenderingStatsInstrumentation* rendering_stats_instrumentation_; |
145 | 141 |
146 std::unique_ptr<LayerTreeHostImpl> layer_tree_host_impl_; | 142 std::unique_ptr<LayerTreeHostImpl> layer_tree_host_impl_; |
147 | 143 |
148 ChannelImpl* channel_impl_; | 144 ChannelImpl* channel_impl_; |
149 | 145 |
150 // Use accessors instead of this variable directly. | 146 // Use accessors instead of this variable directly. |
151 BlockedMainCommitOnly main_thread_blocked_commit_vars_unsafe_; | 147 BlockedMainCommitOnly main_thread_blocked_commit_vars_unsafe_; |
152 BlockedMainCommitOnly& blocked_main_commit(); | 148 BlockedMainCommitOnly& blocked_main_commit(); |
153 | 149 |
154 DISALLOW_COPY_AND_ASSIGN(ProxyImpl); | 150 DISALLOW_COPY_AND_ASSIGN(ProxyImpl); |
155 }; | 151 }; |
156 | 152 |
157 } // namespace cc | 153 } // namespace cc |
158 | 154 |
159 #endif // CC_TREES_PROXY_IMPL_H_ | 155 #endif // CC_TREES_PROXY_IMPL_H_ |
OLD | NEW |