| 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/v8/ScriptWrappable.h" | 29 #include "bindings/v8/ScriptWrappable.h" |
| 30 #include "core/dom/ContextLifecycleObserver.h" | 30 #include "core/dom/ContextLifecycleObserver.h" |
| 31 #include "core/dom/ExecutionContext.h" | 31 #include "core/dom/ExecutionContext.h" |
| 32 #include "modules/EventTargetModules.h" | 32 #include "modules/EventTargetModules.h" |
| 33 #include "modules/encryptedmedia/MediaKeySession.h" | 33 #include "modules/encryptedmedia/MediaKeySession.h" |
| 34 #include "platform/Timer.h" | 34 #include "platform/Timer.h" |
| 35 #include "platform/heap/Handle.h" | 35 #include "platform/heap/Handle.h" |
| 36 #include "wtf/Deque.h" | 36 #include "wtf/Deque.h" |
| 37 #include "wtf/OwnPtr.h" | 37 #include "wtf/Forward.h" |
| 38 #include "wtf/RefCounted.h" | |
| 39 #include "wtf/Uint8Array.h" | 38 #include "wtf/Uint8Array.h" |
| 40 #include "wtf/Vector.h" | 39 #include "wtf/Vector.h" |
| 41 #include "wtf/text/WTFString.h" | 40 #include "wtf/text/WTFString.h" |
| 42 | 41 |
| 43 namespace blink { | 42 namespace blink { |
| 44 class WebContentDecryptionModule; | 43 class WebContentDecryptionModule; |
| 45 } | 44 } |
| 46 | 45 |
| 47 namespace WebCore { | 46 namespace WebCore { |
| 48 | 47 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 String contentType; | 90 String contentType; |
| 92 RefPtr<Uint8Array> initData; | 91 RefPtr<Uint8Array> initData; |
| 93 }; | 92 }; |
| 94 HeapDeque<InitializeNewSessionData> m_pendingInitializeNewSessionData; | 93 HeapDeque<InitializeNewSessionData> m_pendingInitializeNewSessionData; |
| 95 Timer<MediaKeys> m_initializeNewSessionTimer; | 94 Timer<MediaKeys> m_initializeNewSessionTimer; |
| 96 }; | 95 }; |
| 97 | 96 |
| 98 } | 97 } |
| 99 | 98 |
| 100 #endif // MediaKeys_h | 99 #endif // MediaKeys_h |
| OLD | NEW |