Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Side by Side Diff: cc/scheduler/scheduler.h

Issue 951673002: Revert "Pull chromium at 2c3ffb2355a27c32f45e508ef861416b820c823b" (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/resources/video_resource_updater_unittest.cc ('k') | cc/scheduler/scheduler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 virtual void ScheduledActionCommit() = 0; 42 virtual void ScheduledActionCommit() = 0;
43 virtual void ScheduledActionActivateSyncTree() = 0; 43 virtual void ScheduledActionActivateSyncTree() = 0;
44 virtual void ScheduledActionBeginOutputSurfaceCreation() = 0; 44 virtual void ScheduledActionBeginOutputSurfaceCreation() = 0;
45 virtual void ScheduledActionPrepareTiles() = 0; 45 virtual void ScheduledActionPrepareTiles() = 0;
46 virtual void DidAnticipatedDrawTimeChange(base::TimeTicks time) = 0; 46 virtual void DidAnticipatedDrawTimeChange(base::TimeTicks time) = 0;
47 virtual base::TimeDelta DrawDurationEstimate() = 0; 47 virtual base::TimeDelta DrawDurationEstimate() = 0;
48 virtual base::TimeDelta BeginMainFrameToCommitDurationEstimate() = 0; 48 virtual base::TimeDelta BeginMainFrameToCommitDurationEstimate() = 0;
49 virtual base::TimeDelta CommitToActivateDurationEstimate() = 0; 49 virtual base::TimeDelta CommitToActivateDurationEstimate() = 0;
50 virtual void DidBeginImplFrameDeadline() = 0; 50 virtual void DidBeginImplFrameDeadline() = 0;
51 virtual void SendBeginFramesToChildren(const BeginFrameArgs& args) = 0; 51 virtual void SendBeginFramesToChildren(const BeginFrameArgs& args) = 0;
52 virtual void SendBeginMainFrameNotExpectedSoon() = 0;
53 52
54 protected: 53 protected:
55 virtual ~SchedulerClient() {} 54 virtual ~SchedulerClient() {}
56 }; 55 };
57 56
58 class Scheduler; 57 class Scheduler;
59 // This class exists to allow tests to override the frame source construction. 58 // This class exists to allow tests to override the frame source construction.
60 // A virtual method can't be used as this needs to happen in the constructor 59 // A virtual method can't be used as this needs to happen in the constructor
61 // (see C++ FAQ / Section 23 - http://goo.gl/fnrwom for why). 60 // (see C++ FAQ / Section 23 - http://goo.gl/fnrwom for why).
62 // This class exists solely long enough to construct the frame sources. 61 // This class exists solely long enough to construct the frame sources.
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 258
260 friend class SchedulerFrameSourcesConstructor; 259 friend class SchedulerFrameSourcesConstructor;
261 friend class TestSchedulerFrameSourcesConstructor; 260 friend class TestSchedulerFrameSourcesConstructor;
262 261
263 DISALLOW_COPY_AND_ASSIGN(Scheduler); 262 DISALLOW_COPY_AND_ASSIGN(Scheduler);
264 }; 263 };
265 264
266 } // namespace cc 265 } // namespace cc
267 266
268 #endif // CC_SCHEDULER_SCHEDULER_H_ 267 #endif // CC_SCHEDULER_SCHEDULER_H_
OLDNEW
« no previous file with comments | « cc/resources/video_resource_updater_unittest.cc ('k') | cc/scheduler/scheduler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698