| Index: third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.h
|
| diff --git a/third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.h b/third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.h
|
| index 8fcfaf93ed4d10d1752f7349864e1db6477b80cc..018d75daf5f80f70d964d7b35016ce0d0384c159 100644
|
| --- a/third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.h
|
| +++ b/third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.h
|
| @@ -36,6 +36,7 @@
|
| #include "platform/heap/Handle.h"
|
| #include "public/platform/WebContentDecryptionModuleSession.h"
|
| #include "public/platform/WebEncryptedMediaTypes.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -118,7 +119,7 @@ private:
|
| void finishLoad();
|
|
|
| Member<GenericEventQueue> m_asyncEventQueue;
|
| - OwnPtr<WebContentDecryptionModuleSession> m_session;
|
| + std::unique_ptr<WebContentDecryptionModuleSession> m_session;
|
|
|
| // Used to determine if MediaKeys is still active.
|
| WeakMember<MediaKeys> m_mediaKeys;
|
|
|