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

  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeys.h 56 static MediaKeys* create(ExecutionContext*, const String& keySystem, ExceptionState&);
59 const String& keySystem() const { return m_keySystem; }
63 static bool isTypeSupported(const String& keySystem, const String& contentType);
73 MediaKeys(ExecutionContext*, const String& keySystem, PassOwnPtr<blink::WebContentDecryptionModule>);
MediaKeySession.h 75 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 || e.keySystem != 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 217 static bool canLoadURL(const KURL& url, const ContentType& contentType, const String& keySystem)
238 WebMimeRegistry::SupportsType supported = blink::Platform::current()->mimeRegistry()->supportsMediaMIMEType(contentMIMEType, contentTypeCodecs, keySystem.lower());
245 WebMimeRegistry::SupportsType HTMLMediaElement::supportsType(const ContentType& contentType, const String& keySystem)
256 String system = keySystem.lower();
656 String HTMLMediaElement::canPlayType(const String& mimeType, const String& keySystem) const
658 if (!keySystem.isNull())
661 WebMimeRegistry::SupportsType support = supportsType(ContentType(mimeType), keySystem);
678 WTF_LOG(Media, "HTMLMediaElement::canPlayType(%s, %s) -> %s", mimeType.utf8().data(), keySystem.utf8().data(), canPlay.utf8().data());
885 String keySystem;
886 KURL mediaURL = selectNextSourceChild(&contentType, &keySystem, Complain)
    [all...]
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwBrowserProcess.java 69 String keySystem = fragments[0].trim();
71 MediaDrmBridge.addKeySystemUuidMapping(keySystem, uuid);
  /external/chromium_org/third_party/WebKit/Source/web/
WebMediaPlayerClientImpl.cpp 124 void WebMediaPlayerClientImpl::keyAdded(const WebString& keySystem, const WebString& sessionId)
126 HTMLMediaElementEncryptedMedia::keyAdded(mediaElement(), keySystem, sessionId);
129 void WebMediaPlayerClientImpl::keyError(const WebString& keySystem, const WebString& sessionId, MediaKeyErrorCode errorCode, unsigned short systemCode)
131 HTMLMediaElementEncryptedMedia::keyError(mediaElement(), keySystem, sessionId, errorCode, systemCode);
134 void WebMediaPlayerClientImpl::keyMessage(const WebString& keySystem, const WebString& sessionId, const unsigned char* message, unsigned messageLength, const WebURL& defaultURL)
136 HTMLMediaElementEncryptedMedia::keyMessage(mediaElement(), keySystem, sessionId, message, messageLength, defaultURL);

Completed in 1491 milliseconds