Chromium Code Reviews| Index: third_party/WebKit/Source/core/dom/Element.h |
| diff --git a/third_party/WebKit/Source/core/dom/Element.h b/third_party/WebKit/Source/core/dom/Element.h |
| index 5a54f02f8c593c6a5ba010bac182c45e0f6444e6..d6e8bb7f90a0c55ef625cb6a76436fb89ad94876 100644 |
| --- a/third_party/WebKit/Source/core/dom/Element.h |
| +++ b/third_party/WebKit/Source/core/dom/Element.h |
| @@ -555,7 +555,7 @@ protected: |
| void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPropertyID, PassRefPtrWillBeRawPtr<CSSValue>); |
| InsertionNotificationRequest insertedInto(ContainerNode*) override; |
| - void removedFrom(ContainerNode*) override; |
| + void removedFrom(ContainerNode*, Node*) override; |
|
dstockwell
2015/12/08 12:02:37
ditto
|
| void childrenChanged(const ChildrenChange&) override; |
| virtual void willRecalcStyle(StyleRecalcChange); |
| @@ -838,7 +838,7 @@ inline Node::InsertionNotificationRequest Node::insertedInto(ContainerNode* inse |
| return InsertionDone; |
| } |
| -inline void Node::removedFrom(ContainerNode* insertionPoint) |
| +inline void Node::removedFrom(ContainerNode* insertionPoint, Node* next) |
| { |
| ASSERT(insertionPoint->inDocument() || isContainerNode() || isInShadowTree()); |
| if (insertionPoint->inDocument()) { |