| Index: ui/gfx/compositor/layer_delegate.h
|
| ===================================================================
|
| --- ui/gfx/compositor/layer_delegate.h (revision 107719)
|
| +++ ui/gfx/compositor/layer_delegate.h (working copy)
|
| @@ -14,7 +14,7 @@
|
|
|
| namespace ui {
|
|
|
| -class LayerAnimationSequence;
|
| +class Animation;
|
|
|
| // A delegate interface implemented by an object that renders to a Layer.
|
| class COMPOSITOR_EXPORT LayerDelegate {
|
| @@ -23,8 +23,8 @@
|
| // clipped to the Layer's invalid rect.
|
| virtual void OnPaintLayer(gfx::Canvas* canvas) = 0;
|
|
|
| - // Called when |seq| ends.
|
| - virtual void OnLayerAnimationEnded(const LayerAnimationSequence* seq) = 0;
|
| + // Called when |animation| ends.
|
| + virtual void OnLayerAnimationEnded(const ui::Animation* animation) = 0;
|
|
|
| protected:
|
| virtual ~LayerDelegate() {}
|
|
|