| 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 <deque> | 8 #include <deque> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 void OnDrawForOutputSurface(); | 70 void OnDrawForOutputSurface(); |
| 71 | 71 |
| 72 const SchedulerSettings& settings() const { return settings_; } | 72 const SchedulerSettings& settings() const { return settings_; } |
| 73 | 73 |
| 74 void CommitVSyncParameters(base::TimeTicks timebase, | 74 void CommitVSyncParameters(base::TimeTicks timebase, |
| 75 base::TimeDelta interval); | 75 base::TimeDelta interval); |
| 76 void SetEstimatedParentDrawTime(base::TimeDelta draw_time); | 76 void SetEstimatedParentDrawTime(base::TimeDelta draw_time); |
| 77 | 77 |
| 78 void SetVisible(bool visible); | 78 void SetVisible(bool visible); |
| 79 bool visible() { return state_machine_.visible(); } | 79 bool visible() { return state_machine_.visible(); } |
| 80 void SetResourcelessSoftareDraw(bool resourceless_draw); |
| 80 void SetCanDraw(bool can_draw); | 81 void SetCanDraw(bool can_draw); |
| 81 void NotifyReadyToActivate(); | 82 void NotifyReadyToActivate(); |
| 82 void NotifyReadyToDraw(); | 83 void NotifyReadyToDraw(); |
| 83 void SetThrottleFrameProduction(bool throttle); | 84 void SetThrottleFrameProduction(bool throttle); |
| 84 | 85 |
| 85 void SetNeedsBeginMainFrame(); | 86 void SetNeedsBeginMainFrame(); |
| 86 | 87 |
| 87 void SetNeedsRedraw(); | 88 void SetNeedsRedraw(); |
| 88 | 89 |
| 89 void SetNeedsAnimate(); | 90 void SetNeedsAnimate(); |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 } | 222 } |
| 222 | 223 |
| 223 base::WeakPtrFactory<Scheduler> weak_factory_; | 224 base::WeakPtrFactory<Scheduler> weak_factory_; |
| 224 | 225 |
| 225 DISALLOW_COPY_AND_ASSIGN(Scheduler); | 226 DISALLOW_COPY_AND_ASSIGN(Scheduler); |
| 226 }; | 227 }; |
| 227 | 228 |
| 228 } // namespace cc | 229 } // namespace cc |
| 229 | 230 |
| 230 #endif // CC_SCHEDULER_SCHEDULER_H_ | 231 #endif // CC_SCHEDULER_SCHEDULER_H_ |
| OLD | NEW |