| Index: Source/core/platform/graphics/transforms/PerspectiveTransformOperation.h
 | 
| diff --git a/Source/core/platform/graphics/transforms/PerspectiveTransformOperation.h b/Source/core/platform/graphics/transforms/PerspectiveTransformOperation.h
 | 
| index bca1b8e78c4f00113c8971d328070c0662868a78..1d55e3ec537d72f92768413e15700affc808e366 100644
 | 
| --- a/Source/core/platform/graphics/transforms/PerspectiveTransformOperation.h
 | 
| +++ b/Source/core/platform/graphics/transforms/PerspectiveTransformOperation.h
 | 
| @@ -54,13 +54,13 @@ private:
 | 
|          return m_p == p->m_p;
 | 
|      }
 | 
|  
 | 
| -    virtual bool apply(TransformationMatrix& transform, const FloatSize&) const
 | 
| +    virtual bool apply(TransformationMatrix& transform, const FloatSize&, RenderView*renderView) const
 | 
|      {
 | 
| -        transform.applyPerspective(floatValueForLength(m_p, 1));
 | 
| +        transform.applyPerspective(floatValueForLength(m_p, 1, renderView));
 | 
|          return false;
 | 
|      }
 | 
|  
 | 
| -    virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false);
 | 
| +    virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false, RenderView* =0);
 | 
|  
 | 
|      PerspectiveTransformOperation(const Length& p)
 | 
|          : m_p(p)
 | 
| 
 |