| Index: Source/core/platform/graphics/transforms/TransformOperations.h
|
| diff --git a/Source/core/platform/graphics/transforms/TransformOperations.h b/Source/core/platform/graphics/transforms/TransformOperations.h
|
| index f40f77f3ce16dd427399338cdb5cc7993b5ec45b..6858debfa678494853c765ff3f5335e071eef335 100644
|
| --- a/Source/core/platform/graphics/transforms/TransformOperations.h
|
| +++ b/Source/core/platform/graphics/transforms/TransformOperations.h
|
| @@ -43,10 +43,10 @@ public:
|
| return !(*this == o);
|
| }
|
|
|
| - void apply(const FloatSize& sz, TransformationMatrix& t) const
|
| + void apply(const FloatSize& sz, TransformationMatrix& t, RenderView* renderView) const
|
| {
|
| for (unsigned i = 0; i < m_operations.size(); ++i)
|
| - m_operations[i]->apply(t, sz);
|
| + m_operations[i]->apply(t, sz, renderView);
|
| }
|
|
|
| // Return true if any of the operation types are 3D operation types (even if the
|
|
|