| Index: third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp b/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
 | 
| index 7d27e7cfbf7d07d2b40b7db27dfc3c9d00c72e44..a048f05793c695f7f502d2368d3d01cc64bd9823 100644
 | 
| --- a/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
 | 
| +++ b/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
 | 
| @@ -282,9 +282,9 @@ Node::InsertionNotificationRequest HTMLLinkElement::insertedInto(ContainerNode*
 | 
|      return InsertionDone;
 | 
|  }
 | 
|  
 | 
| -void HTMLLinkElement::removedFrom(ContainerNode* insertionPoint)
 | 
| +void HTMLLinkElement::removedFrom(ContainerNode* insertionPoint, Node* next)
 | 
|  {
 | 
| -    HTMLElement::removedFrom(insertionPoint);
 | 
| +    HTMLElement::removedFrom(insertionPoint, next);
 | 
|      if (!insertionPoint->inDocument())
 | 
|          return;
 | 
|  
 | 
| 
 |