OLD | NEW |
1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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_SCHEDULER_SCHEDULER_H_ | 5 #ifndef CC_SCHEDULER_SCHEDULER_H_ |
6 #define CC_SCHEDULER_SCHEDULER_H_ | 6 #define CC_SCHEDULER_SCHEDULER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 void DrawAndSwapIfPossible(); | 112 void DrawAndSwapIfPossible(); |
113 void DrawAndSwapForced(); | 113 void DrawAndSwapForced(); |
114 void DrawAndReadback(); | 114 void DrawAndReadback(); |
115 void ProcessScheduledActions(); | 115 void ProcessScheduledActions(); |
116 | 116 |
117 const SchedulerSettings settings_; | 117 const SchedulerSettings settings_; |
118 SchedulerClient* client_; | 118 SchedulerClient* client_; |
119 | 119 |
120 base::WeakPtrFactory<Scheduler> weak_factory_; | 120 base::WeakPtrFactory<Scheduler> weak_factory_; |
121 bool last_set_needs_begin_frame_; | 121 bool last_set_needs_begin_frame_; |
122 bool has_pending_begin_frame_; | |
123 BeginFrameArgs last_begin_frame_args_; | 122 BeginFrameArgs last_begin_frame_args_; |
124 base::CancelableClosure poll_for_draw_triggers_closure_; | 123 base::CancelableClosure poll_for_draw_triggers_closure_; |
125 | 124 |
126 SchedulerStateMachine state_machine_; | 125 SchedulerStateMachine state_machine_; |
127 bool inside_process_scheduled_actions_; | 126 bool inside_process_scheduled_actions_; |
128 | 127 |
129 DISALLOW_COPY_AND_ASSIGN(Scheduler); | 128 DISALLOW_COPY_AND_ASSIGN(Scheduler); |
130 }; | 129 }; |
131 | 130 |
132 } // namespace cc | 131 } // namespace cc |
133 | 132 |
134 #endif // CC_SCHEDULER_SCHEDULER_H_ | 133 #endif // CC_SCHEDULER_SCHEDULER_H_ |
OLD | NEW |