Searched defs:systemCode (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebContentDecryptionModuleResult.cpp24 void WebContentDecryptionModuleResult::completeWithError(WebContentDecryptionModuleException exception, unsigned long systemCode, const WebString& errorMessage) argument
26 m_impl->completeWithError(exception, systemCode, errorMessage);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DMediaKeyError.h49 static PassRefPtrWillBeRawPtr<MediaKeyError> create(Code code, unsigned long systemCode = 0)
51 return adoptRefWillBeNoop(new MediaKeyError(code, systemCode));
55 unsigned long systemCode() { return m_systemCode; } function in class:blink::FINAL
60 MediaKeyError(Code code, unsigned long systemCode) argument
61 : m_code(code), m_systemCode(systemCode) { }
H A DMediaKeyEvent.h43 unsigned short systemCode; member in struct:blink::MediaKeyEventInit
69 unsigned short systemCode() const { return m_systemCode; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
H A DSimpleContentDecryptionModuleResult.cpp65 void SimpleContentDecryptionModuleResult::completeWithError(WebContentDecryptionModuleException exceptionCode, unsigned long systemCode, const WebString& errorMessage) argument
H A DHTMLMediaElementEncryptedMedia.cpp97 virtual void completeWithError(blink::WebContentDecryptionModuleException code, unsigned long systemCode, const blink::WebString& message) OVERRIDE
447 void HTMLMediaElementEncryptedMedia::keyError(HTMLMediaElement& element, const String& keySystem, const String& sessionId, WebMediaPlayerClient::MediaKeyErrorCode errorCode, unsigned short systemCode) argument
449 WTF_LOG(Media, "HTMLMediaElementEncryptedMedia::mediaPlayerKeyError: sessionID=%s, errorCode=%d, systemCode=%d", sessionId.utf8().data(), errorCode, systemCode);
477 initializer.systemCode = systemCode;
H A DMediaKeySession.cpp182 virtual void completeWithError(WebContentDecryptionModuleException exceptionCode, unsigned long systemCode, const WebString& errorMessage) OVERRIDE
561 void MediaKeySession::error(MediaKeyErrorCode errorCode, unsigned long systemCode) argument
563 WTF_LOG(Media, "MediaKeySession(%p)::error: errorCode=%d, systemCode=%lu", this, errorCode, systemCode);
577 // systemCode = a Key System-specific value, if provided, and 0 otherwise
579 m_error = MediaKeyError::create(mediaKeyErrorCode, systemCode);
587 void MediaKeySession::error(WebContentDecryptionModuleException exception, unsigned long systemCode, const WebString& errorMessage) argument
589 WTF_LOG(Media, "MediaKeySession::error: exception=%d, systemCode=%lu", exception, systemCode);
605 error(errorCode, systemCode);
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebMediaPlayerClientImpl.cpp117 void WebMediaPlayerClientImpl::keyError(const WebString& keySystem, const WebString& sessionId, MediaKeyErrorCode errorCode, unsigned short systemCode) argument
119 HTMLMediaElementEncryptedMedia::keyError(mediaElement(), keySystem, sessionId, errorCode, systemCode); local

Completed in 1225 milliseconds