Index: cc/scheduler/scheduler_state_machine.h |
diff --git a/cc/scheduler/scheduler_state_machine.h b/cc/scheduler/scheduler_state_machine.h |
index f1872fe62d0e784cdb2565824c01f4d4d8a07034..af2e75112cfb110abd07224c8a9669e60393d259 100644 |
--- a/cc/scheduler/scheduler_state_machine.h |
+++ b/cc/scheduler/scheduler_state_machine.h |
@@ -272,17 +272,11 @@ class CC_EXPORT SchedulerStateMachine { |
void SetDeferCommits(bool defer_commits); |
- void SetChildrenNeedBeginFrames(bool children_need_begin_frames); |
- bool children_need_begin_frames() const { |
- return children_need_begin_frames_; |
- } |
- |
void SetVideoNeedsBeginFrames(bool video_needs_begin_frames); |
bool video_needs_begin_frames() const { return video_needs_begin_frames_; } |
protected: |
bool BeginFrameRequiredForAction() const; |
- bool BeginFrameRequiredForChildren() const; |
bool BeginFrameNeededForVideo() const; |
bool ProactiveBeginFrameWanted() const; |
@@ -353,7 +347,6 @@ class CC_EXPORT SchedulerStateMachine { |
bool critical_begin_main_frame_to_activate_is_fast_; |
bool main_thread_missed_last_deadline_; |
bool skip_next_begin_main_frame_to_reduce_latency_; |
- bool children_need_begin_frames_; |
bool defer_commits_; |
bool video_needs_begin_frames_; |
bool last_commit_had_no_updates_; |