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 76a40bcf2f7241d937a90b544ee2a342e96c99ce..bd1dc1db8f76dc493f4eb4792298f48723e68144 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp |
+++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp |
@@ -91,7 +91,6 @@ |
#include "public/platform/modules/remoteplayback/WebRemotePlaybackState.h" |
#include "wtf/CurrentTime.h" |
#include "wtf/MathExtras.h" |
-#include "wtf/PtrUtil.h" |
#include "wtf/text/CString.h" |
#include <limits> |
@@ -3613,7 +3612,7 @@ void HTMLMediaElement::setWebLayer(WebLayer* webLayer) |
void HTMLMediaElement::mediaSourceOpened(WebMediaSource* webMediaSource) |
{ |
- m_mediaSource->setWebMediaSourceAndOpen(wrapUnique(webMediaSource)); |
+ m_mediaSource->setWebMediaSourceAndOpen(adoptPtr(webMediaSource)); |
} |
bool HTMLMediaElement::isInteractiveContent() const |