HomeSort by relevance Sort by last modified time
    Searched refs:MediaKeyErrorCode (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/WebKit/public/platform/
WebContentDecryptionModuleSession.h 45 enum MediaKeyErrorCode {
51 virtual void keyError(MediaKeyErrorCode, unsigned long systemCode) = 0;
WebMediaPlayerClient.h 48 enum MediaKeyErrorCode {
68 virtual void keyError(const WebString& keySystem, const WebString& sessionId, MediaKeyErrorCode, unsigned short systemCode) = 0;
  /external/chromium_org/third_party/WebKit/Source/platform/drm/
ContentDecryptionModuleSession.h 54 enum MediaKeyErrorCode { UnknownError = 1, ClientError };
56 virtual void keyError(MediaKeyErrorCode, unsigned long systemCode) = 0;
76 virtual void keyError(MediaKeyErrorCode, unsigned long systemCode) OVERRIDE;
ContentDecryptionModuleSession.cpp 78 void ContentDecryptionModuleSession::keyError(MediaKeyErrorCode errorCode, unsigned long systemCode)
80 m_client->keyError(static_cast<ContentDecryptionModuleSessionClient::MediaKeyErrorCode>(errorCode), systemCode);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/media/
MediaPlayer.h 83 enum MediaKeyErrorCode { UnknownError = 1, ClientError, ServiceError, OutputError, HardwareChangeError, DomainError };
85 virtual void mediaPlayerKeyError(const String& /* keySystem */, const String& /* sessionId */, MediaKeyErrorCode, unsigned short /* systemCode */) = 0;
  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeySession.h 87 virtual void keyError(MediaKeyErrorCode, unsigned long systemCode) OVERRIDE;
MediaKeySession.cpp 156 void MediaKeySession::keyError(MediaKeyErrorCode errorCode, unsigned long systemCode)
158 MediaKeyError::Code mediaKeyErrorCode = MediaKeyError::MEDIA_KEYERR_UNKNOWN;
161 mediaKeyErrorCode = MediaKeyError::MEDIA_KEYERR_UNKNOWN;
164 mediaKeyErrorCode = MediaKeyError::MEDIA_KEYERR_CLIENT;
172 m_error = MediaKeyError::create(mediaKeyErrorCode, systemCode);
  /external/chromium_org/content/renderer/media/
webcontentdecryptionmodulesession_impl.cc 94 client_->keyError(static_cast<Client::MediaKeyErrorCode>(error_code),
webmediaplayer_util.cc 18 static_cast<int>(blink::WebMediaPlayerClient::MediaKeyErrorCode ## name) == \
webmediaplayer_impl.cc     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebMediaPlayerClientImpl.h 82 virtual void keyError(const WebString& keySystem, const WebString& sessionId, MediaKeyErrorCode, unsigned short systemCode);
WebMediaPlayerClientImpl.cpp 133 void WebMediaPlayerClientImpl::keyError(const WebString& keySystem, const WebString& sessionId, MediaKeyErrorCode errorCode, unsigned short systemCode)
135 m_client->mediaPlayerKeyError(keySystem, sessionId, static_cast<MediaPlayerClient::MediaKeyErrorCode>(errorCode), systemCode);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMediaElement.h 359 virtual void mediaPlayerKeyError(const String& keySystem, const String& sessionId, MediaPlayerClient::MediaKeyErrorCode, unsigned short systemCode) OVERRIDE;
HTMLMediaElement.cpp     [all...]
  /external/chromium_org/content/renderer/media/android/
webmediaplayer_android.cc     [all...]

Completed in 91 milliseconds