| 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 28 matching lines...) Expand all Loading... |
| 39 virtual void ScheduledActionAnimate() = 0; | 39 virtual void ScheduledActionAnimate() = 0; |
| 40 virtual void ScheduledActionCommit() = 0; | 40 virtual void ScheduledActionCommit() = 0; |
| 41 virtual void ScheduledActionActivateSyncTree() = 0; | 41 virtual void ScheduledActionActivateSyncTree() = 0; |
| 42 virtual void ScheduledActionBeginOutputSurfaceCreation() = 0; | 42 virtual void ScheduledActionBeginOutputSurfaceCreation() = 0; |
| 43 virtual void ScheduledActionPrepareTiles() = 0; | 43 virtual void ScheduledActionPrepareTiles() = 0; |
| 44 virtual void ScheduledActionInvalidateOutputSurface() = 0; | 44 virtual void ScheduledActionInvalidateOutputSurface() = 0; |
| 45 virtual void DidAnticipatedDrawTimeChange(base::TimeTicks time) = 0; | 45 virtual void DidAnticipatedDrawTimeChange(base::TimeTicks time) = 0; |
| 46 virtual base::TimeDelta DrawDurationEstimate() = 0; | 46 virtual base::TimeDelta DrawDurationEstimate() = 0; |
| 47 virtual base::TimeDelta BeginMainFrameToCommitDurationEstimate() = 0; | 47 virtual base::TimeDelta BeginMainFrameToCommitDurationEstimate() = 0; |
| 48 virtual base::TimeDelta CommitToActivateDurationEstimate() = 0; | 48 virtual base::TimeDelta CommitToActivateDurationEstimate() = 0; |
| 49 virtual void DidFinishImplFrame() = 0; | 49 // TODO(sunnyps): Rename DidBeginImplFrameDeadline to DidFinishImplFrame. |
| 50 virtual void DidBeginImplFrameDeadline() = 0; |
| 50 virtual void SendBeginFramesToChildren(const BeginFrameArgs& args) = 0; | 51 virtual void SendBeginFramesToChildren(const BeginFrameArgs& args) = 0; |
| 51 virtual void SendBeginMainFrameNotExpectedSoon() = 0; | 52 virtual void SendBeginMainFrameNotExpectedSoon() = 0; |
| 52 | 53 |
| 53 protected: | 54 protected: |
| 54 virtual ~SchedulerClient() {} | 55 virtual ~SchedulerClient() {} |
| 55 }; | 56 }; |
| 56 | 57 |
| 57 class Scheduler; | 58 class Scheduler; |
| 58 // This class exists to allow tests to override the frame source construction. | 59 // This class exists to allow tests to override the frame source construction. |
| 59 // A virtual method can't be used as this needs to happen in the constructor | 60 // A virtual method can't be used as this needs to happen in the constructor |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 | 253 |
| 253 friend class SchedulerFrameSourcesConstructor; | 254 friend class SchedulerFrameSourcesConstructor; |
| 254 friend class TestSchedulerFrameSourcesConstructor; | 255 friend class TestSchedulerFrameSourcesConstructor; |
| 255 | 256 |
| 256 DISALLOW_COPY_AND_ASSIGN(Scheduler); | 257 DISALLOW_COPY_AND_ASSIGN(Scheduler); |
| 257 }; | 258 }; |
| 258 | 259 |
| 259 } // namespace cc | 260 } // namespace cc |
| 260 | 261 |
| 261 #endif // CC_SCHEDULER_SCHEDULER_H_ | 262 #endif // CC_SCHEDULER_SCHEDULER_H_ |
| OLD | NEW |