| 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 a7d6b083235eca111337803d8af04cf9f367e3e1..b895de21ef10472d0de239cafe5d2719327a54fc 100644
|
| --- a/cc/trees/layer_tree_host_impl.h
|
| +++ b/cc/trees/layer_tree_host_impl.h
|
| @@ -95,6 +95,7 @@ class LayerTreeHostImplClient {
|
| 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 DidSwapBuffersOnImplThread() = 0;
|
| virtual void DidSwapBuffersCompleteOnImplThread() = 0;
|
| @@ -349,6 +350,7 @@ class CC_EXPORT LayerTreeHostImpl
|
| // 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(
|
| const gfx::Rect& viewport_rect,
|
|
|