| Index: Source/core/platform/graphics/transforms/Matrix3DTransformOperation.cpp | 
| diff --git a/Source/core/platform/graphics/transforms/Matrix3DTransformOperation.cpp b/Source/core/platform/graphics/transforms/Matrix3DTransformOperation.cpp | 
| index b8732b2e2928dfaf402986762b33e13fd70900af..c4ac2f46a7e308dd2cfd9ce05f1dc190199e5650 100644 | 
| --- a/Source/core/platform/graphics/transforms/Matrix3DTransformOperation.cpp | 
| +++ b/Source/core/platform/graphics/transforms/Matrix3DTransformOperation.cpp | 
| @@ -32,7 +32,7 @@ using namespace std; | 
|  | 
| namespace WebCore { | 
|  | 
| -PassRefPtr<TransformOperation> Matrix3DTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) | 
| +PassRefPtr<TransformOperation> Matrix3DTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity, RenderView* renderView) | 
| { | 
| if (from && !from->isSameType(*this)) | 
| return this; | 
| @@ -42,9 +42,9 @@ PassRefPtr<TransformOperation> Matrix3DTransformOperation::blend(const Transform | 
| TransformationMatrix fromT; | 
| TransformationMatrix toT; | 
| if (from) | 
| -        from->apply(fromT, size); | 
| +        from->apply(fromT, size, renderView); | 
|  | 
| -    apply(toT, size); | 
| +    apply(toT, size, renderView); | 
|  | 
| if (blendToIdentity) | 
| std::swap(fromT, toT); | 
|  |