| Index: third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp b/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
 | 
| index b7232536c0f2f395ea56279a99c7895630bab6df..df5b2a02693661965727b9623babaae3fa064e03 100644
 | 
| --- a/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
 | 
| +++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
 | 
| @@ -549,11 +549,11 @@ void HTMLMediaElement::didNotifySubtreeInsertionsToDocument()
 | 
|      configureMediaControls();
 | 
|  }
 | 
|  
 | 
| -void HTMLMediaElement::removedFrom(ContainerNode* insertionPoint)
 | 
| +void HTMLMediaElement::removedFrom(ContainerNode* insertionPoint, Node* next)
 | 
|  {
 | 
|      WTF_LOG(Media, "HTMLMediaElement::removedFrom(%p, %p)", this, insertionPoint);
 | 
|  
 | 
| -    HTMLElement::removedFrom(insertionPoint);
 | 
| +    HTMLElement::removedFrom(insertionPoint, next);
 | 
|      if (insertionPoint->inActiveDocument()) {
 | 
|          configureMediaControls();
 | 
|          if (m_networkState > NETWORK_EMPTY)
 | 
| 
 |