Index: Source/core/dom/shadow/InsertionPoint.cpp |
diff --git a/Source/core/dom/shadow/InsertionPoint.cpp b/Source/core/dom/shadow/InsertionPoint.cpp |
index 7c60606731237eee6d088f00ab2bb1bbaa8ea741..63cda41679d783db316acf4df8bd30ec094141c6 100644 |
--- a/Source/core/dom/shadow/InsertionPoint.cpp |
+++ b/Source/core/dom/shadow/InsertionPoint.cpp |
@@ -189,9 +189,9 @@ bool InsertionPoint::rendererIsNeeded(const RenderStyle& style) |
return !isActive() && HTMLElement::rendererIsNeeded(style); |
} |
-void InsertionPoint::childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta) |
+void InsertionPoint::childrenChanged(const ChildrenChange& change) |
{ |
- HTMLElement::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta); |
+ HTMLElement::childrenChanged(change); |
if (ShadowRoot* root = containingShadowRoot()) { |
if (ElementShadow* rootOwner = root->owner()) |
rootOwner->setNeedsDistributionRecalc(); |