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 61 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 192 static bool canLoadURL(const KURL& url, const ContentType& contentType, const String& keySystem)
213 WebMimeRegistry::SupportsType supported = blink::Platform::current()->mimeRegistry()->supportsMediaMIMEType(contentMIMEType, contentTypeCodecs, keySystem.lower());
220 WebMimeRegistry::SupportsType HTMLMediaElement::supportsType(const ContentType& contentType, const String& keySystem)
231 String system = keySystem.lower();
588 String HTMLMediaElement::canPlayType(const String& mimeType, const String& keySystem, const KURL& url) const
590 WebMimeRegistry::SupportsType support = supportsType(ContentType(mimeType), keySystem);
607 WTF_LOG(Media, "HTMLMediaElement::canPlayType(%s, %s, %s) -> %s", mimeType.utf8().data(), keySystem.utf8().data(), url.elidedString().utf8().data(), canPlay.utf8().data());
811 String keySystem;
812 KURL mediaURL = selectNextSourceChild(&contentType, &keySystem, Complain);
822 loadResource(mediaURL, contentType, keySystem);
    [all...]

Completed in 5775 milliseconds