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

Unified Diff: cc/scheduler/scheduler.h

Issue 1133673004: cc: Heuristic for Renderer latency recovery (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add SchedulerStateMachine::SwapThrottled Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | cc/scheduler/scheduler.cc » ('j') | cc/scheduler/scheduler.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scheduler/scheduler.h
diff --git a/cc/scheduler/scheduler.h b/cc/scheduler/scheduler.h
index 13daf008cc338935212784a6e4b188215ce54b2e..05b7c207d054e8b4f246ab1c925418744fc26bf1 100644
--- a/cc/scheduler/scheduler.h
+++ b/cc/scheduler/scheduler.h
@@ -98,6 +98,7 @@ class CC_EXPORT Scheduler : public BeginFrameObserverMixIn {
const SchedulerSettings& settings() const { return settings_; }
+ void SetAuthoritativeVSyncInterval(const base::TimeDelta& interval);
mithro-old 2015/05/27 04:40:14 Moving this SetAuthoritativeVSyncInterval seems un
brianderson 2015/05/27 23:22:32 I'll move it to a separate CL.
void CommitVSyncParameters(base::TimeTicks timebase,
base::TimeDelta interval);
void SetEstimatedParentDrawTime(base::TimeDelta draw_time);
@@ -145,9 +146,6 @@ class CC_EXPORT Scheduler : public BeginFrameObserverMixIn {
bool PrepareTilesPending() const {
return state_machine_.PrepareTilesPending();
}
- bool MainThreadIsInHighLatencyMode() const {
- return state_machine_.MainThreadIsInHighLatencyMode();
- }
bool BeginImplFrameDeadlinePending() const {
return !begin_impl_frame_deadline_task_.IsCancelled();
}
@@ -170,8 +168,6 @@ class CC_EXPORT Scheduler : public BeginFrameObserverMixIn {
void SetChildrenNeedBeginFrames(bool children_need_begin_frames);
void SetVideoNeedsBeginFrames(bool video_needs_begin_frames);
- void SetAuthoritativeVSyncInterval(const base::TimeDelta& interval);
-
protected:
Scheduler(SchedulerClient* client,
const SchedulerSettings& scheduler_settings,
@@ -229,6 +225,8 @@ class CC_EXPORT Scheduler : public BeginFrameObserverMixIn {
void SetupPollingMechanisms();
void DrawAndSwapIfPossible();
void ProcessScheduledActions();
+ bool ShouldRecoverMainLatency() const;
+ bool ShouldRecoverImplLatency() const;
bool CanCommitAndActivateBeforeDeadline() const;
void AdvanceCommitStateIfPossible();
bool IsBeginMainFrameSentOrStarted() const;
« no previous file with comments | « no previous file | cc/scheduler/scheduler.cc » ('j') | cc/scheduler/scheduler.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698