| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 bool OnBeginFrameDerivedImpl(const BeginFrameArgs& args) override; | 68 bool OnBeginFrameDerivedImpl(const BeginFrameArgs& args) override; |
| 69 | 69 |
| 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 SetCanStart(); | |
| 79 | |
| 80 void SetVisible(bool visible); | 78 void SetVisible(bool visible); |
| 81 void SetCanDraw(bool can_draw); | 79 void SetCanDraw(bool can_draw); |
| 82 void NotifyReadyToActivate(); | 80 void NotifyReadyToActivate(); |
| 83 void NotifyReadyToDraw(); | 81 void NotifyReadyToDraw(); |
| 84 void SetThrottleFrameProduction(bool throttle); | 82 void SetThrottleFrameProduction(bool throttle); |
| 85 | 83 |
| 86 void SetNeedsBeginMainFrame(); | 84 void SetNeedsBeginMainFrame(); |
| 87 | 85 |
| 88 void SetNeedsRedraw(); | 86 void SetNeedsRedraw(); |
| 89 | 87 |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 } | 220 } |
| 223 | 221 |
| 224 base::WeakPtrFactory<Scheduler> weak_factory_; | 222 base::WeakPtrFactory<Scheduler> weak_factory_; |
| 225 | 223 |
| 226 DISALLOW_COPY_AND_ASSIGN(Scheduler); | 224 DISALLOW_COPY_AND_ASSIGN(Scheduler); |
| 227 }; | 225 }; |
| 228 | 226 |
| 229 } // namespace cc | 227 } // namespace cc |
| 230 | 228 |
| 231 #endif // CC_SCHEDULER_SCHEDULER_H_ | 229 #endif // CC_SCHEDULER_SCHEDULER_H_ |
| OLD | NEW |