| 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..39ea03a7a300b7b1fba649c4de1de31e935cc1a5 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* insertionPoint, Node* next) override;
 | 
|      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()) {
 | 
| 
 |