| Index: cc/single_thread_proxy.h
|
| diff --git a/cc/single_thread_proxy.h b/cc/single_thread_proxy.h
|
| index 4180b02672a8e89681b6a640226dedeee39abc79..ef3a890cd862b3481522421f4c7a44becd7176f0 100644
|
| --- a/cc/single_thread_proxy.h
|
| +++ b/cc/single_thread_proxy.h
|
| @@ -75,15 +75,16 @@ class SingleThreadProxy : public Proxy, LayerTreeHostImplClient {
|
| virtual void RenewTreePriority() OVERRIDE {}
|
|
|
| // Called by the legacy path where RenderWidget does the scheduling.
|
| - void CompositeImmediately();
|
| + void CompositeImmediately(base::TimeTicks frame_begin_time);
|
|
|
| private:
|
| explicit SingleThreadProxy(LayerTreeHost* layer_tree_host);
|
|
|
| - bool CommitAndComposite();
|
| + bool CommitAndComposite(base::TimeTicks frame_begin_time);
|
| void DoCommit(scoped_ptr<ResourceUpdateQueue> queue);
|
| bool DoComposite(
|
| - scoped_refptr<cc::ContextProvider> offscreen_context_provider);
|
| + scoped_refptr<cc::ContextProvider> offscreen_context_provider,
|
| + base::TimeTicks frame_begin_time);
|
| void DidSwapFrame();
|
|
|
| // Accessed on main thread only.
|
|
|