| Index: Source/core/svg/graphics/SVGImageForContainer.cpp
|
| diff --git a/Source/core/svg/graphics/SVGImageForContainer.cpp b/Source/core/svg/graphics/SVGImageForContainer.cpp
|
| index aafa81f814ae01f4a43f740a1102367ce8a8a23e..0e7e57fb3177e7f550ce3693bb84ccd4342db88c 100644
|
| --- a/Source/core/svg/graphics/SVGImageForContainer.cpp
|
| +++ b/Source/core/svg/graphics/SVGImageForContainer.cpp
|
| @@ -34,15 +34,15 @@ IntSize SVGImageForContainer::size() const
|
| }
|
|
|
| void SVGImageForContainer::draw(GraphicsContext* context, const FloatRect& dstRect,
|
| - const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode, RespectImageOrientationEnum)
|
| + const FloatRect& srcRect, SkXfermode::Mode compositeOp, RespectImageOrientationEnum)
|
| {
|
| - m_image->drawForContainer(context, m_containerSize, m_zoom, dstRect, srcRect, compositeOp, blendMode);
|
| + m_image->drawForContainer(context, m_containerSize, m_zoom, dstRect, srcRect, compositeOp);
|
| }
|
|
|
| void SVGImageForContainer::drawPattern(GraphicsContext* context, const FloatRect& srcRect, const FloatSize& scale,
|
| - const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing)
|
| + const FloatPoint& phase, SkXfermode::Mode op, const FloatRect& dstRect, const IntSize& repeatSpacing)
|
| {
|
| - m_image->drawPatternForContainer(context, m_containerSize, m_zoom, srcRect, scale, phase, compositeOp, dstRect, blendMode, repeatSpacing);
|
| + m_image->drawPatternForContainer(context, m_containerSize, m_zoom, srcRect, scale, phase, op, dstRect, repeatSpacing);
|
| }
|
|
|
| PassRefPtr<NativeImageSkia> SVGImageForContainer::nativeImageForCurrentFrame()
|
|
|