| Index: cc/test/scheduler_test_common.h
|
| diff --git a/cc/test/scheduler_test_common.h b/cc/test/scheduler_test_common.h
|
| index ccc8c263cf5cd756bc605afdd2ce65f3b8c47a0e..e03839a0fa66c5074df6539942a3966d68a8929b 100644
|
| --- a/cc/test/scheduler_test_common.h
|
| +++ b/cc/test/scheduler_test_common.h
|
| @@ -213,14 +213,13 @@ class FakeCompositorTimingHistory : public CompositorTimingHistory {
|
|
|
| class TestScheduler : public Scheduler {
|
| public:
|
| - static scoped_ptr<TestScheduler> Create(
|
| - base::SimpleTestTickClock* now_src,
|
| - SchedulerClient* client,
|
| - const SchedulerSettings& scheduler_settings,
|
| - int layer_tree_host_id,
|
| - OrderedSimpleTaskRunner* task_runner,
|
| - BeginFrameSource* external_frame_source,
|
| - scoped_ptr<CompositorTimingHistory> compositor_timing_history);
|
| + TestScheduler(base::SimpleTestTickClock* now_src,
|
| + SchedulerClient* client,
|
| + const SchedulerSettings& scheduler_settings,
|
| + int layer_tree_host_id,
|
| + OrderedSimpleTaskRunner* task_runner,
|
| + BeginFrameSource* begin_frame_source,
|
| + scoped_ptr<CompositorTimingHistory> compositor_timing_history);
|
|
|
| // Extra test helper functionality
|
| bool IsBeginRetroFrameArgsEmpty() const {
|
| @@ -263,17 +262,6 @@ class TestScheduler : public Scheduler {
|
| base::TimeTicks Now() const override;
|
|
|
| private:
|
| - TestScheduler(
|
| - base::SimpleTestTickClock* now_src,
|
| - SchedulerClient* client,
|
| - const SchedulerSettings& scheduler_settings,
|
| - int layer_tree_host_id,
|
| - OrderedSimpleTaskRunner* task_runner,
|
| - BeginFrameSource* external_frame_source,
|
| - scoped_ptr<TestSyntheticBeginFrameSource> synthetic_frame_source,
|
| - scoped_ptr<TestBackToBackBeginFrameSource> unthrottled_frame_source,
|
| - scoped_ptr<CompositorTimingHistory> compositor_timing_history);
|
| -
|
| base::SimpleTestTickClock* now_src_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(TestScheduler);
|
|
|