| Index: cc/trees/layer_tree_host_impl.h
|
| diff --git a/cc/trees/layer_tree_host_impl.h b/cc/trees/layer_tree_host_impl.h
|
| index 2ee3e7f0629f067b0449a69a2984a28963e315a5..420fb9eadb69f38eb19dd30f84a30133b5a1bd16 100644
|
| --- a/cc/trees/layer_tree_host_impl.h
|
| +++ b/cc/trees/layer_tree_host_impl.h
|
| @@ -98,6 +98,8 @@
|
| class LayerTreeHostImplClient {
|
| public:
|
| virtual void DidLoseOutputSurfaceOnImplThread() = 0;
|
| + virtual void CommitVSyncParameters(base::TimeTicks timebase,
|
| + base::TimeDelta interval) = 0;
|
| virtual void SetBeginFrameSource(BeginFrameSource* source) = 0;
|
| virtual void SetEstimatedParentDrawTime(base::TimeDelta draw_time) = 0;
|
| virtual void DidSwapBuffersCompleteOnImplThread() = 0;
|
| @@ -365,6 +367,8 @@
|
| void RemoveVideoFrameController(VideoFrameController* controller) override;
|
|
|
| // OutputSurfaceClient implementation.
|
| + void CommitVSyncParameters(base::TimeTicks timebase,
|
| + base::TimeDelta interval) override;
|
| void SetBeginFrameSource(BeginFrameSource* source) override;
|
| void SetNeedsRedrawRect(const gfx::Rect& rect) override;
|
| void SetExternalTilePriorityConstraints(
|
|
|