| Index: sky/engine/core/dom/shadow/InsertionPoint.cpp
|
| diff --git a/sky/engine/core/dom/shadow/InsertionPoint.cpp b/sky/engine/core/dom/shadow/InsertionPoint.cpp
|
| index 1ac84d70647bc09d29bf14768c794c8846061e67..6f5675e72b7b99dc9ee564b16c4458f27c4f98aa 100644
|
| --- a/sky/engine/core/dom/shadow/InsertionPoint.cpp
|
| +++ b/sky/engine/core/dom/shadow/InsertionPoint.cpp
|
| @@ -170,7 +170,7 @@ void InsertionPoint::insertedInto(ContainerNode* insertionPoint)
|
| rootOwner->setNeedsDistributionRecalc();
|
| if (canBeActive() && !m_registeredWithShadowRoot && insertionPoint->treeScope().rootNode() == root) {
|
| m_registeredWithShadowRoot = true;
|
| - root->didAddInsertionPoint(this);
|
| + root->didAddInsertionPoint();
|
| if (canAffectSelector())
|
| rootOwner->willAffectSelector();
|
| }
|
| @@ -198,7 +198,7 @@ void InsertionPoint::removedFrom(ContainerNode* insertionPoint)
|
| if (m_registeredWithShadowRoot && insertionPoint->treeScope().rootNode() == root) {
|
| ASSERT(root);
|
| m_registeredWithShadowRoot = false;
|
| - root->didRemoveInsertionPoint(this);
|
| + root->didRemoveInsertionPoint();
|
| if (rootOwner) {
|
| if (canAffectSelector())
|
| rootOwner->willAffectSelector();
|
|
|