Index: Source/core/rendering/svg/RenderSVGResourceGradient.cpp |
diff --git a/Source/core/rendering/svg/RenderSVGResourceGradient.cpp b/Source/core/rendering/svg/RenderSVGResourceGradient.cpp |
index c6c5b53db1073966ec41067941db1abae994e598..ebe7d52e22f0c28caf3b91d5e1c4ffc3c1883402 100644 |
--- a/Source/core/rendering/svg/RenderSVGResourceGradient.cpp |
+++ b/Source/core/rendering/svg/RenderSVGResourceGradient.cpp |
@@ -40,14 +40,14 @@ void RenderSVGResourceGradient::removeAllClientsFromCache(bool markForInvalidati |
{ |
m_gradientMap.clear(); |
m_shouldCollectGradientAttributes = true; |
- markAllClientsForInvalidation(markForInvalidation ? RepaintInvalidation : ParentOnlyInvalidation); |
+ markAllClientsForInvalidation(markForInvalidation ? PaintInvalidation : ParentOnlyInvalidation); |
} |
void RenderSVGResourceGradient::removeClientFromCache(RenderObject* client, bool markForInvalidation) |
{ |
ASSERT(client); |
m_gradientMap.remove(client); |
- markClientForInvalidation(client, markForInvalidation ? RepaintInvalidation : ParentOnlyInvalidation); |
+ markClientForInvalidation(client, markForInvalidation ? PaintInvalidation : ParentOnlyInvalidation); |
} |
bool RenderSVGResourceGradient::applyResource(RenderObject* object, RenderStyle* style, GraphicsContext*& context, unsigned short resourceMode) |