Chromium Code Reviews| Index: cc/scheduler/scheduler.h |
| diff --git a/cc/scheduler/scheduler.h b/cc/scheduler/scheduler.h |
| index 70522eb218621d629dc4bcf14f445c50c97397c6..e44ead01325fba88eff510df7c6f8b236479b1df 100644 |
| --- a/cc/scheduler/scheduler.h |
| +++ b/cc/scheduler/scheduler.h |
| @@ -16,6 +16,7 @@ |
| #include "cc/output/begin_frame_args.h" |
| #include "cc/scheduler/delay_based_time_source.h" |
| #include "cc/scheduler/draw_result.h" |
| +#include "cc/scheduler/frame_source.h" |
| #include "cc/scheduler/scheduler_settings.h" |
| #include "cc/scheduler/scheduler_state_machine.h" |
| @@ -30,7 +31,7 @@ namespace cc { |
| class SchedulerClient { |
| public: |
| - virtual void SetNeedsBeginFrame(bool enable) = 0; |
| + virtual BeginFrameSource* GetBeginFrameSource() = 0; |
|
brianderson
2014/09/13 01:38:13
How about GetExternalBeginFrameSource()?
|
| virtual void WillBeginImplFrame(const BeginFrameArgs& args) = 0; |
| virtual void ScheduledActionSendBeginMainFrame() = 0; |
| virtual DrawResult ScheduledActionDrawAndSwapIfPossible() = 0; |
| @@ -51,7 +52,7 @@ class SchedulerClient { |
| virtual ~SchedulerClient() {} |
| }; |
| -class CC_EXPORT Scheduler { |
| +class CC_EXPORT Scheduler : public BeginFrameObserver { |
| public: |
| static scoped_ptr<Scheduler> Create( |
| SchedulerClient* client, |
| @@ -123,51 +124,32 @@ class CC_EXPORT Scheduler { |
| void NotifyBeginMainFrameStarted(); |
| - base::TimeTicks LastBeginImplFrameTime(); |
| - |
| - void BeginFrame(const BeginFrameArgs& args); |
| - |
| + virtual void AsValueInto(base::debug::TracedValue* value) const OVERRIDE; |
| scoped_refptr<base::debug::ConvertableToTraceFormat> AsValue() const; |
| void SetContinuousPainting(bool continuous_painting) { |
| state_machine_.SetContinuousPainting(continuous_painting); |
| } |
| - protected: |
| - class CC_EXPORT SyntheticBeginFrameSource : public TimeSourceClient { |
| - public: |
| - SyntheticBeginFrameSource(Scheduler* scheduler, |
| - scoped_refptr<DelayBasedTimeSource> time_source); |
| - virtual ~SyntheticBeginFrameSource(); |
| - |
| - // Updates the phase and frequency of the timer. |
| - void CommitVSyncParameters(base::TimeTicks timebase, |
| - base::TimeDelta interval); |
| - |
| - // Activates future BeginFrames and, if activating, pushes the most |
| - // recently missed BeginFrame to the back of a retroactive queue. |
| - void SetNeedsBeginFrame(bool needs_begin_frame, |
| - std::deque<BeginFrameArgs>* begin_retro_frame_args); |
| - |
| - bool IsActive() const; |
| - |
| - // TimeSourceClient implementation of OnTimerTick triggers a BeginFrame. |
| - virtual void OnTimerTick() OVERRIDE; |
| - |
| - void AsValueInto(base::debug::TracedValue* dict) const; |
| - |
| - private: |
| - BeginFrameArgs CreateSyntheticBeginFrameArgs(base::TimeTicks frame_time); |
| + virtual void OnBeginFrame(const BeginFrameArgs& args) OVERRIDE; |
| + virtual const BeginFrameArgs& LastBeginFrameArgs() const OVERRIDE; |
| + base::TimeTicks LastBeginImplFrameTime(); |
| - Scheduler* scheduler_; |
| - scoped_refptr<DelayBasedTimeSource> time_source_; |
| - }; |
| + ui::CompositorVSyncManager::Observer* vsync_observer_; |
| + scoped_ptr<BeginFrameSourceMultiplexer> frame_source_; |
| + BeginFrameSource* primary_frame_source_; |
| + scoped_ptr<BeginFrameSource> primary_frame_source_store_; |
|
brianderson
2014/09/13 01:38:13
primary_frame_source_internal_?
|
| + scoped_ptr<SyntheticBeginFrameSource> background_frame_source_store_; |
| + protected: |
| Scheduler(SchedulerClient* client, |
| const SchedulerSettings& scheduler_settings, |
| int layer_tree_host_id, |
| const scoped_refptr<base::SingleThreadTaskRunner>& task_runner); |
| + // Overridable for testing. |
| + virtual void SetUpBackgroundFrameSource(); |
| + virtual void SetUpPrimaryFrameSource(); |
| virtual base::TimeTicks Now() const; |
| const SchedulerSettings settings_; |
| @@ -175,17 +157,13 @@ class CC_EXPORT Scheduler { |
| int layer_tree_host_id_; |
| scoped_refptr<base::SingleThreadTaskRunner> task_runner_; |
| - base::TimeDelta vsync_interval_; |
| base::TimeDelta estimated_parent_draw_time_; |
| - bool last_set_needs_begin_frame_; |
| - bool begin_unthrottled_frame_posted_; |
| bool begin_retro_frame_posted_; |
| std::deque<BeginFrameArgs> begin_retro_frame_args_; |
| + BeginFrameArgs last_begin_frame_args_; |
| BeginFrameArgs begin_impl_frame_args_; |
| - scoped_ptr<SyntheticBeginFrameSource> synthetic_begin_frame_source_; |
| - |
| base::Closure begin_retro_frame_closure_; |
| base::Closure begin_unthrottled_frame_closure_; |
| @@ -200,8 +178,6 @@ class CC_EXPORT Scheduler { |
| bool inside_process_scheduled_actions_; |
| SchedulerStateMachine::Action inside_action_; |
| - base::TimeDelta VSyncInterval() { return vsync_interval_; } |
| - |
| private: |
| base::TimeTicks AdjustedBeginImplFrameDeadline( |
| const BeginFrameArgs& args, |
| @@ -209,17 +185,13 @@ class CC_EXPORT Scheduler { |
| void ScheduleBeginImplFrameDeadline(base::TimeTicks deadline); |
| void SetupNextBeginFrameIfNeeded(); |
| void PostBeginRetroFrameIfNeeded(); |
| - void SetupNextBeginFrameWhenVSyncThrottlingEnabled(bool needs_begin_frame); |
| - void SetupNextBeginFrameWhenVSyncThrottlingDisabled(bool needs_begin_frame); |
| void SetupPollingMechanisms(bool needs_begin_frame); |
| void DrawAndSwapIfPossible(); |
| void ProcessScheduledActions(); |
| bool CanCommitAndActivateBeforeDeadline() const; |
| void AdvanceCommitStateIfPossible(); |
| bool IsBeginMainFrameSentOrStarted() const; |
| - void SetupSyntheticBeginFrames(); |
| void BeginRetroFrame(); |
| - void BeginUnthrottledFrame(); |
| void BeginImplFrame(const BeginFrameArgs& args); |
| void OnBeginImplFrameDeadline(); |
| void PollForAnticipatedDrawTriggers(); |