| 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 13 matching lines...) Expand all Loading... |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 #include "modules/encryptedmedia/MediaKeySession.h" | 27 #include "modules/encryptedmedia/MediaKeySession.h" |
| 28 | 28 |
| 29 #include "bindings/core/v8/DOMWrapperWorld.h" | 29 #include "bindings/core/v8/DOMWrapperWorld.h" |
| 30 #include "bindings/core/v8/ScriptPromise.h" | 30 #include "bindings/core/v8/ScriptPromise.h" |
| 31 #include "bindings/core/v8/ScriptPromiseResolver.h" | 31 #include "bindings/core/v8/ScriptPromiseResolver.h" |
| 32 #include "bindings/core/v8/ScriptState.h" | 32 #include "bindings/core/v8/ScriptState.h" |
| 33 #include "core/dom/DOMArrayBuffer.h" | 33 #include "core/dom/DOMArrayBuffer.h" |
| 34 #include "core/dom/DOMException.h" |
| 34 #include "core/dom/ExceptionCode.h" | 35 #include "core/dom/ExceptionCode.h" |
| 35 #include "core/events/Event.h" | 36 #include "core/events/Event.h" |
| 36 #include "core/events/GenericEventQueue.h" | 37 #include "core/events/GenericEventQueue.h" |
| 37 #include "core/html/MediaKeyError.h" | 38 #include "core/html/MediaKeyError.h" |
| 38 #include "modules/encryptedmedia/ContentDecryptionModuleResultPromise.h" | 39 #include "modules/encryptedmedia/ContentDecryptionModuleResultPromise.h" |
| 39 #include "modules/encryptedmedia/EncryptedMediaUtils.h" | 40 #include "modules/encryptedmedia/EncryptedMediaUtils.h" |
| 40 #include "modules/encryptedmedia/MediaKeyMessageEvent.h" | 41 #include "modules/encryptedmedia/MediaKeyMessageEvent.h" |
| 41 #include "modules/encryptedmedia/MediaKeys.h" | 42 #include "modules/encryptedmedia/MediaKeys.h" |
| 42 #include "modules/encryptedmedia/SimpleContentDecryptionModuleResultPromise.h" | 43 #include "modules/encryptedmedia/SimpleContentDecryptionModuleResultPromise.h" |
| 43 #include "platform/ContentDecryptionModuleResult.h" | 44 #include "platform/ContentDecryptionModuleResult.h" |
| (...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 924 visitor->trace(m_asyncEventQueue); | 925 visitor->trace(m_asyncEventQueue); |
| 925 visitor->trace(m_pendingActions); | 926 visitor->trace(m_pendingActions); |
| 926 visitor->trace(m_mediaKeys); | 927 visitor->trace(m_mediaKeys); |
| 927 visitor->trace(m_keyStatusesMap); | 928 visitor->trace(m_keyStatusesMap); |
| 928 visitor->trace(m_closedPromise); | 929 visitor->trace(m_closedPromise); |
| 929 RefCountedGarbageCollectedEventTargetWithInlineData<MediaKeySession>::trace(
visitor); | 930 RefCountedGarbageCollectedEventTargetWithInlineData<MediaKeySession>::trace(
visitor); |
| 930 ActiveDOMObject::trace(visitor); | 931 ActiveDOMObject::trace(visitor); |
| 931 } | 932 } |
| 932 | 933 |
| 933 } // namespace blink | 934 } // namespace blink |
| OLD | NEW |