Chromium Code Reviews| Index: ui/compositor/transform_animation_curve_adapter.h |
| diff --git a/ui/compositor/transform_animation_curve_adapter.h b/ui/compositor/transform_animation_curve_adapter.h |
| index 43952ca9183a3cafdfabddbdb587544617e8d560..4b60a68ee7d5347a3b75e04bc4173a248f881b49 100644 |
| --- a/ui/compositor/transform_animation_curve_adapter.h |
| +++ b/ui/compositor/transform_animation_curve_adapter.h |
| @@ -32,7 +32,7 @@ class COMPOSITOR_EXPORT TransformAnimationCurveAdapter |
| gfx::BoxF* bounds) const override; |
| virtual bool AffectsScale() const override; |
| virtual bool IsTranslation() const override; |
| - virtual bool MaximumScale(float* max_scale) const override; |
| + virtual bool MaximumTargetScale(float* max_scale) const override; |
|
ajuma
2014/10/10 15:43:03
This needs to a |forward_direction| argument too.
|
| private: |
| gfx::Tween::Type tween_type_; |
| @@ -61,7 +61,7 @@ class COMPOSITOR_EXPORT InverseTransformCurveAdapter |
| gfx::BoxF* bounds) const override; |
| virtual bool AffectsScale() const override; |
| virtual bool IsTranslation() const override; |
| - virtual bool MaximumScale(float* max_scale) const override; |
| + virtual bool MaximumTargetScale(float* max_scale) const override; |
| private: |
| TransformAnimationCurveAdapter base_curve_; |