Searched refs:systemCode (Results 1 - 18 of 18) sorted by relevance

/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 DMediaKeyError.idl37 [RuntimeEnabled=EncryptedMedia] readonly attribute unsigned long systemCode;
H A DMediaKeyEvent.cpp34 : systemCode(0)
50 , m_systemCode(initializer.systemCode)
H A DMediaKeyEvent.idl36 [InitializedByEventConstructor] readonly attribute unsigned short 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/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/platform/
H A DContentDecryptionModuleResult.h23 virtual void completeWithError(WebContentDecryptionModuleException, unsigned long systemCode, const WebString&) = 0;
/external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
H A DSimpleContentDecryptionModuleResult.h34 virtual void completeWithError(WebContentDecryptionModuleException, unsigned long systemCode, const WebString&) OVERRIDE;
H A DSimpleContentDecryptionModuleResult.cpp65 void SimpleContentDecryptionModuleResult::completeWithError(WebContentDecryptionModuleException exceptionCode, unsigned long systemCode, const WebString& errorMessage) argument
H A DMediaKeySession.h109 virtual void error(MediaKeyErrorCode, unsigned long systemCode) OVERRIDE;
110 virtual void error(WebContentDecryptionModuleException, unsigned long systemCode, const WebString& errorMessage) OVERRIDE;
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...]
H A DHTMLMediaElementEncryptedMedia.h45 static void keyError(HTMLMediaElement&, const String& keySystem, const String& sessionId, WebMediaPlayerClient::MediaKeyErrorCode, unsigned short systemCode);
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;
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebContentDecryptionModuleResult.h55 BLINK_PLATFORM_EXPORT void completeWithError(WebContentDecryptionModuleException, unsigned long systemCode, const WebString& message);
H A DWebContentDecryptionModuleSession.h56 virtual void error(MediaKeyErrorCode, unsigned long systemCode) = 0;
57 virtual void error(WebContentDecryptionModuleException, unsigned long systemCode, const WebString& message) = 0;
H A DWebMediaPlayerClient.h84 virtual void keyError(const WebString& keySystem, const WebString& sessionId, MediaKeyErrorCode, unsigned short systemCode) = 0;
/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
H A DWebMediaPlayerClientImpl.h71 virtual void keyError(const WebString& keySystem, const WebString& sessionId, MediaKeyErrorCode, unsigned short systemCode) OVERRIDE;

Completed in 1544 milliseconds