| Index: third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp b/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp
|
| index 74e23a191be32c36389ffb1de11941594fa3f7ec..bac530d4d83d14566d082b7981998d5b0f5cfa26 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp
|
| @@ -900,6 +900,7 @@ void GraphicsContext::drawTiledImage(Image* image,
|
| if (contextDisabled() || !image)
|
| return;
|
| image->drawTiled(*this, destRect, srcPoint, tileSize, op, repeatSpacing);
|
| + m_paintController.setImagePainted();
|
| }
|
|
|
| void GraphicsContext::drawTiledImage(Image* image,
|
| @@ -919,6 +920,7 @@ void GraphicsContext::drawTiledImage(Image* image,
|
| }
|
|
|
| image->drawTiled(*this, dest, srcRect, tileScaleFactor, hRule, vRule, op);
|
| + m_paintController.setImagePainted();
|
| }
|
|
|
| void GraphicsContext::drawOval(const SkRect& oval, const SkPaint& paint) {
|
|
|