| Index: cc/trees/thread_proxy.h
|
| diff --git a/cc/trees/thread_proxy.h b/cc/trees/thread_proxy.h
|
| index b1f859ad8c7b2bae8b190db66bd093858ab72eb8..cc99afdb5676b743b6606e6f4277553ec82a24b8 100644
|
| --- a/cc/trees/thread_proxy.h
|
| +++ b/cc/trees/thread_proxy.h
|
| @@ -70,6 +70,7 @@ class ThreadProxy : public Proxy,
|
| virtual void DidLoseOutputSurfaceOnImplThread() OVERRIDE;
|
| virtual void OnSwapBuffersCompleteOnImplThread() OVERRIDE;
|
| virtual void BeginFrameOnImplThread(const BeginFrameArgs& args) OVERRIDE;
|
| + virtual void DidBeginFrameDeadlineOnImplThread() OVERRIDE;
|
| virtual void OnCanDrawStateChanged(bool can_draw) OVERRIDE;
|
| virtual void NotifyReadyToActivate() OVERRIDE;
|
| virtual void SetNeedsRedrawOnImplThread() OVERRIDE;
|
| @@ -106,6 +107,8 @@ class ThreadProxy : public Proxy,
|
| virtual base::TimeDelta DrawDurationEstimate() OVERRIDE;
|
| virtual base::TimeDelta BeginFrameToCommitDurationEstimate() OVERRIDE;
|
| virtual base::TimeDelta CommitToActivateDurationEstimate() OVERRIDE;
|
| + virtual void PostBeginFrameDeadline(const base::Closure& closure,
|
| + base::TimeTicks deadline) OVERRIDE;
|
|
|
| // ResourceUpdateControllerClient implementation
|
| virtual void ReadyToFinalizeTextureUpdates() OVERRIDE;
|
| @@ -220,6 +223,7 @@ class ThreadProxy : public Proxy,
|
| scoped_ptr<LayerTreeHostImpl> layer_tree_host_impl_;
|
|
|
| scoped_ptr<Scheduler> scheduler_on_impl_thread_;
|
| + bool frame_did_draw_;
|
|
|
| // Set when the main thread is waiting on a
|
| // ScheduledActionSendBeginFrameToMainThread to be issued.
|
|
|