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

  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeys.h 49 static ScriptPromise create(ScriptState*, const String& keySystem);
52 const String& keySystem() const { return m_keySystem; }
56 static bool isTypeSupported(const String& keySystem, const String& contentType);
67 MediaKeys(ExecutionContext*, const String& keySystem, PassOwnPtr<blink::WebContentDecryptionModule>);
MediaKeySession.h 71 const String& keySystem() const { return m_keySystem; }
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaKeyEvent.h 37 String keySystem;
63 String keySystem() const { return m_keySystem; }
HTMLMediaElement.cpp 242 static bool canLoadURL(const KURL& url, const ContentType& contentType, const String& keySystem)
263 WebMimeRegistry::SupportsType supported = blink::Platform::current()->mimeRegistry()->supportsMediaMIMEType(contentMIMEType, contentTypeCodecs, keySystem.lower());
270 WebMimeRegistry::SupportsType HTMLMediaElement::supportsType(const ContentType& contentType, const String& keySystem)
281 String system = keySystem.lower();
693 String HTMLMediaElement::canPlayType(const String& mimeType, const String& keySystem) const
695 if (!keySystem.isNull())
698 WebMimeRegistry::SupportsType support = supportsType(ContentType(mimeType), keySystem);
714 WTF_LOG(Media, "HTMLMediaElement::canPlayType(%p, %s, %s) -> %s", this, mimeType.utf8().data(), keySystem.utf8().data(), canPlay.utf8().data());
    [all...]
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwBrowserProcess.java 68 String keySystem = fragments[0].trim();
70 MediaDrmBridge.addKeySystemUuidMapping(keySystem, uuid);
  /external/chromium_org/third_party/WebKit/Source/web/
WebMediaPlayerClientImpl.cpp 112 void WebMediaPlayerClientImpl::keyAdded(const WebString& keySystem, const WebString& sessionId)
114 HTMLMediaElementEncryptedMedia::keyAdded(mediaElement(), keySystem, sessionId);
117 void WebMediaPlayerClientImpl::keyError(const WebString& keySystem, const WebString& sessionId, MediaKeyErrorCode errorCode, unsigned short systemCode)
119 HTMLMediaElementEncryptedMedia::keyError(mediaElement(), keySystem, sessionId, errorCode, systemCode);
122 void WebMediaPlayerClientImpl::keyMessage(const WebString& keySystem, const WebString& sessionId, const unsigned char* message, unsigned messageLength, const WebURL& defaultURL)
124 HTMLMediaElementEncryptedMedia::keyMessage(mediaElement(), keySystem, sessionId, message, messageLength, defaultURL);

Completed in 275 milliseconds