Home | History | Annotate | Download | only in html

Lines Matching refs:MediaError

54 #include "MediaError.h"
377 PassRefPtr<MediaError> HTMLMediaElement::error() const
656 // resource failed to load. Set the error attribute to a new MediaError object whose
658 m_error = MediaError::create(MediaError::MEDIA_ERR_SRC_NOT_SUPPORTED);
679 void HTMLMediaElement::mediaEngineError(PassRefPtr<MediaError> err)
685 // 2 - Set the error attribute to a new MediaError object whose code attribute is
746 mediaEngineError(MediaError::create(MediaError::MEDIA_ERR_NETWORK));
748 mediaEngineError(MediaError::create(MediaError::MEDIA_ERR_DECODE));
1716 // 2 - Set the error attribute to a new MediaError object whose code attribute is set to MEDIA_ERR_ABORTED.
1717 m_error = MediaError::create(MediaError::MEDIA_ERR_ABORTED);
1764 if (m_error && m_error->code() == MediaError::MEDIA_ERR_ABORTED) {