| Index: third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp
|
| diff --git a/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp b/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp
|
| index 1668a8233b2498e7d3e58174d362555b78eda402..cb4bded0b03a82b517a5d5b606236cf16f13af6e 100644
|
| --- a/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp
|
| +++ b/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp
|
| @@ -38,6 +38,7 @@
|
| #include "platform/Timer.h"
|
| #include "public/platform/WebContentDecryptionModule.h"
|
| #include "wtf/RefPtr.h"
|
| +#include <memory>
|
|
|
| #define MEDIA_KEYS_LOG_LEVEL 3
|
|
|
| @@ -116,14 +117,14 @@ public:
|
| }
|
| };
|
|
|
| -MediaKeys* MediaKeys::create(ExecutionContext* context, const WebVector<WebEncryptedMediaSessionType>& supportedSessionTypes, PassOwnPtr<WebContentDecryptionModule> cdm)
|
| +MediaKeys* MediaKeys::create(ExecutionContext* context, const WebVector<WebEncryptedMediaSessionType>& supportedSessionTypes, std::unique_ptr<WebContentDecryptionModule> cdm)
|
| {
|
| MediaKeys* mediaKeys = new MediaKeys(context, supportedSessionTypes, std::move(cdm));
|
| mediaKeys->suspendIfNeeded();
|
| return mediaKeys;
|
| }
|
|
|
| -MediaKeys::MediaKeys(ExecutionContext* context, const WebVector<WebEncryptedMediaSessionType>& supportedSessionTypes, PassOwnPtr<WebContentDecryptionModule> cdm)
|
| +MediaKeys::MediaKeys(ExecutionContext* context, const WebVector<WebEncryptedMediaSessionType>& supportedSessionTypes, std::unique_ptr<WebContentDecryptionModule> cdm)
|
| : ActiveScriptWrappable(this)
|
| , ActiveDOMObject(context)
|
| , m_supportedSessionTypes(supportedSessionTypes)
|
|
|