Index: Source/core/rendering/RenderObject.cpp |
diff --git a/Source/core/rendering/RenderObject.cpp b/Source/core/rendering/RenderObject.cpp |
index 665eb2e880695a93b260ce38a23f1b26a25cb81c..fbabb82dbc7ce14ce9c90eb97f7604de3db1c12f 100644 |
--- a/Source/core/rendering/RenderObject.cpp |
+++ b/Source/core/rendering/RenderObject.cpp |
@@ -3043,7 +3043,7 @@ bool RenderObject::isRelayoutBoundaryForInspector() const |
return objectIsRelayoutBoundary(this); |
} |
-void RenderObject::setShouldDoFullPaintInvalidationWithReason(PaintInvalidationReason reason) |
+void RenderObject::setShouldDoFullPaintInvalidation(PaintInvalidationReason reason) |
{ |
// Only full invalidation reasons are allowed. |
ASSERT(isFullPaintInvalidationReason(reason)); |
@@ -3051,7 +3051,7 @@ void RenderObject::setShouldDoFullPaintInvalidationWithReason(PaintInvalidationR |
// RenderText objects don't know how to invalidate paint for themselves, since they don't know how to compute their bounds. |
// Instead the parent fully invalidate when any text needs full paint invalidation. |
if (isText()) { |
- parent()->setShouldDoFullPaintInvalidationWithReason(reason); |
+ parent()->setShouldDoFullPaintInvalidation(reason); |
return; |
} |