Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGText.cpp |
diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGText.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGText.cpp |
index 584e9dce0b2b4c5123b969277ddd8e60ec3880d1..eae7cb7866f64c6a033e66002b6a003062e1a62a 100644 |
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGText.cpp |
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGText.cpp |
@@ -394,19 +394,4 @@ void LayoutSVGText::removeChild(LayoutObject* child) |
LayoutSVGBlock::removeChild(child); |
} |
-void LayoutSVGText::invalidateTreeIfNeeded(const PaintInvalidationState& paintInvalidationState) |
chrishtr
2016/05/23 20:10:32
Ditto.
|
-{ |
- ASSERT(!needsLayout()); |
- |
- if (!shouldCheckForPaintInvalidation(paintInvalidationState)) |
- return; |
- |
- PaintInvalidationState newPaintInvalidationState(paintInvalidationState, *this); |
- PaintInvalidationReason reason = invalidatePaintIfNeeded(newPaintInvalidationState); |
- clearPaintInvalidationFlags(newPaintInvalidationState); |
- |
- newPaintInvalidationState.updateForChildren(reason); |
- invalidatePaintOfSubtreesIfNeeded(newPaintInvalidationState); |
-} |
- |
} // namespace blink |