| Index: cc/trees/thread_proxy.h
|
| diff --git a/cc/trees/thread_proxy.h b/cc/trees/thread_proxy.h
|
| index 48aa661d76d9209be733f4321dc4b9a0b4178e0b..178de09253ce9e25f7d31201cd5c158d37ad5cd3 100644
|
| --- a/cc/trees/thread_proxy.h
|
| +++ b/cc/trees/thread_proxy.h
|
| @@ -18,7 +18,6 @@
|
| #include "cc/scheduler/scheduler.h"
|
| #include "cc/trees/layer_tree_host_impl.h"
|
| #include "cc/trees/proxy.h"
|
| -#include "cc/trees/proxy_timing_history.h"
|
|
|
| namespace base {
|
| class SingleThreadTaskRunner;
|
| @@ -139,10 +138,10 @@ class CC_EXPORT ThreadProxy : public Proxy,
|
|
|
| DelayedUniqueNotifier smoothness_priority_expiration_notifier;
|
|
|
| - ProxyTimingHistory timing_history;
|
| -
|
| scoped_ptr<BeginFrameSource> external_begin_frame_source;
|
|
|
| + RenderingStatsInstrumentation* rendering_stats_instrumentation;
|
| +
|
| // Values used to keep track of frame durations. Used only in frame timing.
|
| BeginFrameArgs last_begin_main_frame_args;
|
| BeginFrameArgs last_processed_begin_main_frame_args;
|
| @@ -214,6 +213,7 @@ class CC_EXPORT ThreadProxy : public Proxy,
|
| void PostDelayedAnimationTaskOnImplThread(const base::Closure& task,
|
| base::TimeDelta delay) override;
|
| void DidActivateSyncTree() override;
|
| + void WillPrepareTiles() override;
|
| void DidPrepareTiles() override;
|
| void DidCompletePageScaleAnimationOnImplThread() override;
|
| void OnDrawForOutputSurface() override;
|
| @@ -236,9 +236,6 @@ class CC_EXPORT ThreadProxy : public Proxy,
|
| void ScheduledActionPrepareTiles() override;
|
| void ScheduledActionInvalidateOutputSurface() override;
|
| void DidAnticipatedDrawTimeChange(base::TimeTicks time) override;
|
| - base::TimeDelta DrawDurationEstimate() override;
|
| - base::TimeDelta BeginMainFrameToCommitDurationEstimate() override;
|
| - base::TimeDelta CommitToActivateDurationEstimate() override;
|
| void SendBeginFramesToChildren(const BeginFrameArgs& args) override;
|
| void SendBeginMainFrameNotExpectedSoon() override;
|
|
|
|
|