HomeSort by relevance Sort by last modified time
    Searched defs:MediaKeys (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/media/base/
media_keys.cc 9 MediaKeys::MediaKeys() {}
11 MediaKeys::~MediaKeys() {}
13 Decryptor* MediaKeys::GetDecryptor() { return NULL; }
media_keys.h 37 class MEDIA_EXPORT MediaKeys {
76 MediaKeys();
77 virtual ~MediaKeys();
121 // Gets the Decryptor object associated with the MediaKeys. Returns NULL if
123 // to be valid during the MediaKeys' lifetime.
127 DISALLOW_COPY_AND_ASSIGN(MediaKeys);
141 MediaKeys::Exception exception_code,
  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeys.h 46 class MediaKeys : public GarbageCollectedFinalized<MediaKeys>, public ContextLifecycleObserver, public ScriptWrappable {
50 virtual ~MediaKeys();
67 MediaKeys(ExecutionContext*, const String& keySystem, PassOwnPtr<blink::WebContentDecryptionModule>);
MediaKeys.cpp 27 #include "modules/encryptedmedia/MediaKeys.h"
75 // This class allows a MediaKeys object to be created asynchronously.
105 // Start the timer so that MediaKeys can be created asynchronously.
118 // NOTE: Continued from step 4. of MediaKeys::create().
136 // 4.4 Let media keys be a new MediaKeys object.
137 MediaKeys* mediaKeys = new MediaKeys(executionContext(), m_keySystem, cdm.release());
140 resolve(mediaKeys);
147 ScriptPromise MediaKeys::create(ScriptState* scriptState, const String& keySystem
    [all...]

Completed in 1074 milliseconds