| Index: cc/layer_tree_host_impl.h
|
| diff --git a/cc/layer_tree_host_impl.h b/cc/layer_tree_host_impl.h
|
| index 323f398cc05daceb79f1dd59888684ae77faa2e7..580b462226dab874b6deb04cbc8dc251c04b25c9 100644
|
| --- a/cc/layer_tree_host_impl.h
|
| +++ b/cc/layer_tree_host_impl.h
|
| @@ -65,6 +65,7 @@ class LayerTreeHostImplClient {
|
| virtual void SendManagedMemoryStats() = 0;
|
| virtual bool IsInsideDraw() = 0;
|
| virtual void RenewTreePriority() = 0;
|
| + virtual void RequestScrollbarAnimationOnImplThread(base::TimeDelta delay) = 0;
|
| };
|
|
|
| // LayerTreeHostImpl owns the LayerImpl trees as well as associated rendering
|
| @@ -107,6 +108,8 @@ class CC_EXPORT LayerTreeHostImpl : public InputHandlerClient,
|
| virtual void setNeedsRedraw() OVERRIDE;
|
| virtual bool haveRootScrollLayer() const OVERRIDE;
|
|
|
| + void StartScrollbarAnimation(base::TimeTicks now);
|
| +
|
| struct CC_EXPORT FrameData : public RenderPassSink {
|
| FrameData();
|
| ~FrameData();
|
| @@ -381,6 +384,8 @@ class CC_EXPORT LayerTreeHostImpl : public InputHandlerClient,
|
|
|
| static LayerImpl* GetNonCompositedContentLayerRecursive(LayerImpl* layer);
|
|
|
| + void StartScrollbarAnimationRecursive(LayerImpl* layer, base::TimeTicks time);
|
| +
|
| scoped_ptr<OutputSurface> output_surface_;
|
| scoped_ptr<ResourceProvider> resource_provider_;
|
| scoped_ptr<Renderer> renderer_;
|
|
|