| Index: ui/compositor/test/test_layer_animation_delegate.h
|
| diff --git a/ui/compositor/test/test_layer_animation_delegate.h b/ui/compositor/test/test_layer_animation_delegate.h
|
| index e492d4ad9c9d6ba32bd1f715a07fd4a09785691f..2c21aa5d03d6a260df3fa91d7f63f8a56b8f0a8b 100644
|
| --- a/ui/compositor/test/test_layer_animation_delegate.h
|
| +++ b/ui/compositor/test/test_layer_animation_delegate.h
|
| @@ -20,7 +20,8 @@ class TestLayerAnimationDelegate : public LayerAnimationDelegate {
|
|
|
| // Implementation of LayerAnimationDelegate
|
| virtual void SetBoundsFromAnimation(const gfx::Rect& bounds) OVERRIDE;
|
| - virtual void SetTransformFromAnimation(const Transform& transform) OVERRIDE;
|
| + virtual void SetTransformFromAnimation(
|
| + const gfx::Transform& transform) OVERRIDE;
|
| virtual void SetOpacityFromAnimation(float opacity) OVERRIDE;
|
| virtual void SetVisibilityFromAnimation(bool visibility) OVERRIDE;
|
| virtual void SetBrightnessFromAnimation(float brightness) OVERRIDE;
|
| @@ -28,7 +29,7 @@ class TestLayerAnimationDelegate : public LayerAnimationDelegate {
|
| virtual void SetColorFromAnimation(SkColor color) OVERRIDE;
|
| virtual void ScheduleDrawForAnimation() OVERRIDE;
|
| virtual const gfx::Rect& GetBoundsForAnimation() const OVERRIDE;
|
| - virtual const Transform& GetTransformForAnimation() const OVERRIDE;
|
| + virtual const gfx::Transform& GetTransformForAnimation() const OVERRIDE;
|
| virtual float GetOpacityForAnimation() const OVERRIDE;
|
| virtual bool GetVisibilityForAnimation() const OVERRIDE;
|
| virtual float GetBrightnessForAnimation() const OVERRIDE;
|
| @@ -37,7 +38,7 @@ class TestLayerAnimationDelegate : public LayerAnimationDelegate {
|
|
|
| private:
|
| gfx::Rect bounds_;
|
| - Transform transform_;
|
| + gfx::Transform transform_;
|
| float opacity_;
|
| bool visibility_;
|
| float brightness_;
|
|
|