| Index: sky/engine/core/dom/shadow/InsertionPoint.h
|
| diff --git a/sky/engine/core/dom/shadow/InsertionPoint.h b/sky/engine/core/dom/shadow/InsertionPoint.h
|
| index fa6c48fe4b4fd48a66966f70d946cce093bae0a7..c17063c06fc11d59c54e648b0380f42eec2d5e94 100644
|
| --- a/sky/engine/core/dom/shadow/InsertionPoint.h
|
| +++ b/sky/engine/core/dom/shadow/InsertionPoint.h
|
| @@ -67,7 +67,7 @@ public:
|
| Node* nextTo(const Node* node) const { return m_distribution.nextTo(node); }
|
| Node* previousTo(const Node* node) const { return m_distribution.previousTo(node); }
|
|
|
| - virtual void trace(Visitor*) override;
|
| + void willRecalcStyle(StyleRecalcChange);
|
|
|
| protected:
|
| InsertionPoint(const QualifiedName&, Document&);
|
| @@ -75,7 +75,6 @@ protected:
|
| virtual void childrenChanged(const ChildrenChange&) override;
|
| virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
|
| virtual void removedFrom(ContainerNode*) override;
|
| - virtual void willRecalcStyle(StyleRecalcChange) override;
|
|
|
| private:
|
| bool isInsertionPoint() const = delete; // This will catch anyone doing an unnecessary check.
|
|
|