| Index: third_party/WebKit/Source/core/html/HTMLDialogElement.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/html/HTMLDialogElement.cpp b/third_party/WebKit/Source/core/html/HTMLDialogElement.cpp
 | 
| index 03fb8129857406affd47d07c2b7fba0bf6a5e853..8496675ded04a97e0aea9161c5660896d7274172 100644
 | 
| --- a/third_party/WebKit/Source/core/html/HTMLDialogElement.cpp
 | 
| +++ b/third_party/WebKit/Source/core/html/HTMLDialogElement.cpp
 | 
| @@ -171,9 +171,9 @@ void HTMLDialogElement::showModal(ExceptionState& exceptionState)
 | 
|      setFocusForDialog(this);
 | 
|  }
 | 
|  
 | 
| -void HTMLDialogElement::removedFrom(ContainerNode* insertionPoint)
 | 
| +void HTMLDialogElement::removedFrom(ContainerNode* insertionPoint, Node* next)
 | 
|  {
 | 
| -    HTMLElement::removedFrom(insertionPoint);
 | 
| +    HTMLElement::removedFrom(insertionPoint, next);
 | 
|      setNotCentered();
 | 
|      // FIXME: We should call inertSubtreesChanged() here.
 | 
|  }
 | 
| 
 |