| 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 16 matching lines...) Expand all Loading... |
| 27 #define MediaKeys_h | 27 #define MediaKeys_h |
| 28 | 28 |
| 29 #include "bindings/core/v8/ScriptPromise.h" | 29 #include "bindings/core/v8/ScriptPromise.h" |
| 30 #include "bindings/core/v8/ScriptWrappable.h" | 30 #include "bindings/core/v8/ScriptWrappable.h" |
| 31 #include "core/dom/ContextLifecycleObserver.h" | 31 #include "core/dom/ContextLifecycleObserver.h" |
| 32 #include "wtf/Forward.h" | 32 #include "wtf/Forward.h" |
| 33 #include "wtf/text/WTFString.h" | 33 #include "wtf/text/WTFString.h" |
| 34 | 34 |
| 35 namespace blink { | 35 namespace blink { |
| 36 | 36 |
| 37 class ExceptionState; | |
| 38 class ExecutionContext; | 37 class ExecutionContext; |
| 39 class HTMLMediaElement; | |
| 40 class MediaKeySession; | 38 class MediaKeySession; |
| 41 class ScriptState; | 39 class ScriptState; |
| 42 class WebContentDecryptionModule; | 40 class WebContentDecryptionModule; |
| 43 | 41 |
| 44 // References are held by JS and HTMLMediaElement. | 42 // References are held by JS and HTMLMediaElement. |
| 45 // The WebContentDecryptionModule has the same lifetime as this object. | 43 // The WebContentDecryptionModule has the same lifetime as this object. |
| 46 class MediaKeys : public GarbageCollectedFinalized<MediaKeys>, public ContextLif
ecycleObserver, public ScriptWrappable { | 44 class MediaKeys : public GarbageCollectedFinalized<MediaKeys>, public ContextLif
ecycleObserver, public ScriptWrappable { |
| 47 DEFINE_WRAPPERTYPEINFO(); | 45 DEFINE_WRAPPERTYPEINFO(); |
| 48 public: | 46 public: |
| 49 static ScriptPromise create(ScriptState*, const String& keySystem); | 47 static ScriptPromise create(ScriptState*, const String& keySystem); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 66 friend class MediaKeysInitializer; | 64 friend class MediaKeysInitializer; |
| 67 MediaKeys(ExecutionContext*, const String& keySystem, PassOwnPtr<blink::WebC
ontentDecryptionModule>); | 65 MediaKeys(ExecutionContext*, const String& keySystem, PassOwnPtr<blink::WebC
ontentDecryptionModule>); |
| 68 | 66 |
| 69 const String m_keySystem; | 67 const String m_keySystem; |
| 70 OwnPtr<blink::WebContentDecryptionModule> m_cdm; | 68 OwnPtr<blink::WebContentDecryptionModule> m_cdm; |
| 71 }; | 69 }; |
| 72 | 70 |
| 73 } // namespace blink | 71 } // namespace blink |
| 74 | 72 |
| 75 #endif // MediaKeys_h | 73 #endif // MediaKeys_h |
| OLD | NEW |