Searched refs:cdm (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/testing/
H A DMockCDM.h39 explicit MockCDM(CDM* cdm) argument
40 : m_cdm(cdm)
44 static std::unique_ptr<CDMPrivateInterface> create(CDM* cdm) { return std::make_unique<MockCDM>(cdm); } argument
/macosx-10.10/WebCore-7600.1.25/Modules/encryptedmedia/
H A DCDMPrivateMediaPlayer.h41 explicit CDMPrivateMediaPlayer(CDM* cdm) argument
42 : m_cdm(cdm)
45 static std::unique_ptr<CDMPrivateInterface> create(CDM* cdm) { return std::make_unique<CDMPrivateMediaPlayer>(cdm); } argument
54 CDM* cdm() const { return m_cdm; } function in class:WebCore::CDMPrivateMediaPlayer
H A DMediaKeys.cpp58 // 3. Let cdm be the content decryption module corresponding to keySystem.
59 // 4. Load cdm if necessary.
60 std::unique_ptr<CDM> cdm = CDM::create(keySystem); local
65 return adoptRef(new MediaKeys(keySystem, WTF::move(cdm)));
68 MediaKeys::MediaKeys(const String& keySystem, std::unique_ptr<CDM> cdm) argument
71 , m_cdm(WTF::move(cdm))
113 // 4.2 Let the sessionId attribute be a unique Session ID string. It may be generated by cdm.
H A DMediaKeys.h55 CDM* cdm() { return m_cdm.get(); } function in class:WebCore::MediaKeys
H A DMediaKeySession.cpp53 , m_session(keys->cdm()->createSession())
103 // 1. Let cdm be the cdm loaded in the MediaKeys constructor.
109 // 3. Use cdm to generate a key request and follow the steps for the first matching condition from the following list:
161 // 2.1. Let cdm be the cdm loaded in the MediaKeys constructor.
167 // 2.4. Use cdm to handle key.

Completed in 69 milliseconds