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

  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeys.h 51 static PassRefPtr<MediaKeys> create(const String& keySystem, ExceptionState&);
56 const String& keySystem() const { return m_keySystem; }
61 MediaKeys(const String& keySystem, PassOwnPtr<ContentDecryptionModule>);
MediaKeySession.h 60 const String& keySystem() const { return m_keySystem; }
  /external/chromium_org/content/test/data/media/
encrypted_media_utils.js 5 var keySystem = QueryString.keysystem;
33 return loadEncryptedMedia(video, mediaFile, keySystem, KEY, useMSE);
36 function loadEncryptedMedia(video, mediaFile, keySystem, key, useMSE,
43 video.isHeartbeatExpected = keySystem === EXTERNAL_CLEAR_KEY_KEY_SYSTEM;
46 if (!(video && mediaFile && keySystem && key)) {
57 video.webkitGenerateKeyRequest(keySystem, e.initData);
70 if (!e.keySystem) {
71 failTest('keymessage without a keySystem: ' + e.keySystem);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaKeyEvent.h 37 String keySystem;
62 String keySystem() const { return m_keySystem; }
HTMLMediaElement.cpp 189 static bool canLoadURL(const KURL& url, const ContentType& contentType, const String& keySystem)
210 WebMimeRegistry::SupportsType supported = WebKit::Platform::current()->mimeRegistry()->supportsMediaMIMEType(contentMIMEType, contentTypeCodecs, keySystem.lower());
217 WebMimeRegistry::SupportsType HTMLMediaElement::supportsType(const ContentType& contentType, const String& keySystem)
228 String system = keySystem.lower();
624 String HTMLMediaElement::canPlayType(const String& mimeType, const String& keySystem, const KURL& url) const
626 WebMimeRegistry::SupportsType support = supportsType(ContentType(mimeType), keySystem);
643 LOG(Media, "HTMLMediaElement::canPlayType(%s, %s, %s) -> %s", mimeType.utf8().data(), keySystem.utf8().data(), url.elidedString().utf8().data(), canPlay.utf8().data());
844 String keySystem;
845 KURL mediaURL = selectNextSourceChild(&contentType, &keySystem, Complain);
855 loadResource(mediaURL, contentType, keySystem);
    [all...]

Completed in 316 milliseconds