| Index: Source/platform/transforms/InterpolatedTransformOperation.h
|
| diff --git a/Source/platform/transforms/InterpolatedTransformOperation.h b/Source/platform/transforms/InterpolatedTransformOperation.h
|
| index 3eff4734777b95a6d11134251c3b522c3d1a82e5..5c89be919fba96c3328eea2a630b62b13808db87 100644
|
| --- a/Source/platform/transforms/InterpolatedTransformOperation.h
|
| +++ b/Source/platform/transforms/InterpolatedTransformOperation.h
|
| @@ -45,14 +45,14 @@ public:
|
| }
|
|
|
| private:
|
| - virtual bool isIdentity() const { return false; }
|
| + virtual bool isIdentity() const OVERRIDE { return false; }
|
|
|
| virtual OperationType type() const OVERRIDE { return Interpolated; }
|
|
|
| virtual bool operator==(const TransformOperation&) const;
|
| - virtual void apply(TransformationMatrix&, const FloatSize& borderBoxSize) const;
|
| + virtual void apply(TransformationMatrix&, const FloatSize& borderBoxSize) const OVERRIDE;
|
|
|
| - virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false);
|
| + virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false) OVERRIDE;
|
|
|
| virtual bool dependsOnBoxSize() const OVERRIDE
|
| {
|
|
|