| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Apple Inc. All rights reserved. | 2 * Copyright (C) 2013 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF | 22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| 23 * THE POSSIBILITY OF SUCH DAMAGE. | 23 * THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef MediaKeys_h | 26 #ifndef MediaKeys_h |
| 27 #define MediaKeys_h | 27 #define MediaKeys_h |
| 28 | 28 |
| 29 #include "bindings/core/v8/ActiveScriptWrappable.h" | 29 #include "bindings/core/v8/ActiveScriptWrappable.h" |
| 30 #include "bindings/core/v8/ScriptPromise.h" | 30 #include "bindings/core/v8/ScriptPromise.h" |
| 31 #include "bindings/core/v8/ScriptWrappable.h" | 31 #include "bindings/core/v8/ScriptWrappable.h" |
| 32 #include "core/dom/ContextLifecycleObserver.h" |
| 32 #include "core/dom/DOMArrayPiece.h" | 33 #include "core/dom/DOMArrayPiece.h" |
| 33 #include "core/dom/SuspendableObject.h" | |
| 34 #include "platform/Timer.h" | 34 #include "platform/Timer.h" |
| 35 #include "public/platform/WebContentDecryptionModule.h" | 35 #include "public/platform/WebContentDecryptionModule.h" |
| 36 #include "public/platform/WebEncryptedMediaTypes.h" | 36 #include "public/platform/WebEncryptedMediaTypes.h" |
| 37 #include "public/platform/WebString.h" | 37 #include "public/platform/WebString.h" |
| 38 #include "public/platform/WebVector.h" | 38 #include "public/platform/WebVector.h" |
| 39 #include "wtf/Forward.h" | 39 #include "wtf/Forward.h" |
| 40 #include "wtf/text/WTFString.h" | 40 #include "wtf/text/WTFString.h" |
| 41 #include <memory> | 41 #include <memory> |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 class ExceptionState; | 45 class ExceptionState; |
| 46 class ExecutionContext; | 46 class ExecutionContext; |
| 47 class HTMLMediaElement; | 47 class HTMLMediaElement; |
| 48 class MediaKeySession; | 48 class MediaKeySession; |
| 49 class ScriptState; | 49 class ScriptState; |
| 50 class WebContentDecryptionModule; | 50 class WebContentDecryptionModule; |
| 51 | 51 |
| 52 // References are held by JS and HTMLMediaElement. | 52 // References are held by JS and HTMLMediaElement. |
| 53 // The WebContentDecryptionModule has the same lifetime as this object. | 53 // The WebContentDecryptionModule has the same lifetime as this object. |
| 54 class MediaKeys : public GarbageCollectedFinalized<MediaKeys>, | 54 class MediaKeys : public GarbageCollectedFinalized<MediaKeys>, |
| 55 public ActiveScriptWrappable<MediaKeys>, | 55 public ActiveScriptWrappable<MediaKeys>, |
| 56 public SuspendableObject, | 56 public ContextLifecycleObserver, |
| 57 public ScriptWrappable { | 57 public ScriptWrappable { |
| 58 USING_GARBAGE_COLLECTED_MIXIN(MediaKeys); | 58 USING_GARBAGE_COLLECTED_MIXIN(MediaKeys); |
| 59 DEFINE_WRAPPERTYPEINFO(); | 59 DEFINE_WRAPPERTYPEINFO(); |
| 60 | 60 |
| 61 public: | 61 public: |
| 62 static MediaKeys* create( | 62 static MediaKeys* create( |
| 63 ExecutionContext*, | 63 ExecutionContext*, |
| 64 const WebVector<WebEncryptedMediaSessionType>& supportedSessionTypes, | 64 const WebVector<WebEncryptedMediaSessionType>& supportedSessionTypes, |
| 65 std::unique_ptr<WebContentDecryptionModule>); | 65 std::unique_ptr<WebContentDecryptionModule>); |
| 66 ~MediaKeys() override; | 66 virtual ~MediaKeys(); |
| 67 | 67 |
| 68 MediaKeySession* createSession(ScriptState*, | 68 MediaKeySession* createSession(ScriptState*, |
| 69 const String& sessionTypeString, | 69 const String& sessionTypeString, |
| 70 ExceptionState&); | 70 ExceptionState&); |
| 71 | 71 |
| 72 ScriptPromise setServerCertificate(ScriptState*, | 72 ScriptPromise setServerCertificate(ScriptState*, |
| 73 const DOMArrayPiece& serverCertificate); | 73 const DOMArrayPiece& serverCertificate); |
| 74 | 74 |
| 75 // Indicates that the provided HTMLMediaElement wants to use this object. | 75 // Indicates that the provided HTMLMediaElement wants to use this object. |
| 76 // Returns true if no other HTMLMediaElement currently references this | 76 // Returns true if no other HTMLMediaElement currently references this |
| 77 // object, false otherwise. If true, will take a weak reference to | 77 // object, false otherwise. If true, will take a weak reference to |
| 78 // HTMLMediaElement and expects the reservation to be accepted/cancelled | 78 // HTMLMediaElement and expects the reservation to be accepted/cancelled |
| 79 // later. | 79 // later. |
| 80 bool reserveForMediaElement(HTMLMediaElement*); | 80 bool reserveForMediaElement(HTMLMediaElement*); |
| 81 // Indicates that SetMediaKeys completed successfully. | 81 // Indicates that SetMediaKeys completed successfully. |
| 82 void acceptReservation(); | 82 void acceptReservation(); |
| 83 // Indicates that SetMediaKeys failed, so HTMLMediaElement did not | 83 // Indicates that SetMediaKeys failed, so HTMLMediaElement did not |
| 84 // successfully link to this object. | 84 // successfully link to this object. |
| 85 void cancelReservation(); | 85 void cancelReservation(); |
| 86 | 86 |
| 87 // The previously reserved and accepted HTMLMediaElement is no longer | 87 // The previously reserved and accepted HTMLMediaElement is no longer |
| 88 // using this object. | 88 // using this object. |
| 89 void clearMediaElement(); | 89 void clearMediaElement(); |
| 90 | 90 |
| 91 WebContentDecryptionModule* contentDecryptionModule(); | 91 WebContentDecryptionModule* contentDecryptionModule(); |
| 92 | 92 |
| 93 DECLARE_VIRTUAL_TRACE(); | 93 DECLARE_VIRTUAL_TRACE(); |
| 94 | 94 |
| 95 // SuspendableObject implementation. | 95 // ContextLifecycleObserver implementation. |
| 96 // FIXME: This class could derive from ContextLifecycleObserver | 96 // FIXME: This class could derive from ContextLifecycleObserver |
| 97 // again (http://crbug.com/483722). | 97 // again (http://crbug.com/483722). |
| 98 void contextDestroyed() override; | 98 void contextDestroyed() override; |
| 99 | 99 |
| 100 // ScriptWrappable implementation. | 100 // ScriptWrappable implementation. |
| 101 bool hasPendingActivity() const final; | 101 bool hasPendingActivity() const final; |
| 102 | 102 |
| 103 private: | 103 private: |
| 104 MediaKeys( | 104 MediaKeys( |
| 105 ExecutionContext*, | 105 ExecutionContext*, |
| (...skipping 21 matching lines...) Expand all Loading... |
| 127 // object will be prevented until the setMediaKeys() completes. | 127 // object will be prevented until the setMediaKeys() completes. |
| 128 bool m_reservedForMediaElement; | 128 bool m_reservedForMediaElement; |
| 129 | 129 |
| 130 HeapDeque<Member<PendingAction>> m_pendingActions; | 130 HeapDeque<Member<PendingAction>> m_pendingActions; |
| 131 Timer<MediaKeys> m_timer; | 131 Timer<MediaKeys> m_timer; |
| 132 }; | 132 }; |
| 133 | 133 |
| 134 } // namespace blink | 134 } // namespace blink |
| 135 | 135 |
| 136 #endif // MediaKeys_h | 136 #endif // MediaKeys_h |
| OLD | NEW |