Searched defs:cdm (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DContentDecryptionModule.cpp51 OwnPtr<WebKit::WebContentDecryptionModule> cdm = adoptPtr(WebKit::Platform::current()->createContentDecryptionModule(keySystem)); local
52 if (!cdm)
54 return adoptPtr(new ContentDecryptionModule(cdm.release()));
57 ContentDecryptionModule::ContentDecryptionModule(PassOwnPtr<WebKit::WebContentDecryptionModule> cdm) argument
58 : m_cdm(cdm)
/external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
H A DMediaKeys.cpp57 // 3. Let cdm be the content decryption module corresponding to keySystem.
58 // 4. Load cdm if necessary.
59 OwnPtr<ContentDecryptionModule> cdm = ContentDecryptionModule::create(keySystem); local
60 if (!cdm) {
68 return adoptRef(new MediaKeys(keySystem, cdm.release()));
71 MediaKeys::MediaKeys(const String& keySystem, PassOwnPtr<ContentDecryptionModule> cdm) argument
74 , m_cdm(cdm)
112 // 3.2 Let the sessionId attribute be a unique Session ID string. It may be generated by cdm.
H A DMediaKeySession.cpp40 PassRefPtr<MediaKeySession> MediaKeySession::create(ScriptExecutionContext* context, ContentDecryptionModule* cdm, MediaKeys* keys) argument
42 return adoptRef(new MediaKeySession(context, cdm, keys));
45 MediaKeySession::MediaKeySession(ScriptExecutionContext* context, ContentDecryptionModule* cdm, MediaKeys* keys) argument
49 , m_session(cdm->createSession(this))
105 // 1. Let cdm be the cdm loaded in the MediaKeys constructor.
108 // 3. Use cdm to generate a key request and follow the steps for the first matching condition from the following list:
141 // 2.1. Let cdm be the cdm loaded in the MediaKeys constructor.
145 // 2.4. Use cdm t
[all...]

Completed in 67 milliseconds