Searched refs:MEDIA_ERR_ABORTED (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/html/
H A DMediaError.idl28 const unsigned short MEDIA_ERR_ABORTED = 1;
H A DMediaError.h38 enum Code { MEDIA_ERR_ABORTED = 1, MEDIA_ERR_NETWORK, MEDIA_ERR_DECODE, MEDIA_ERR_SRC_NOT_SUPPORTED }; enumerator in enum:WebCore::MediaError::Code
H A DHTMLMediaElement.cpp2289 // 2 - Set the error attribute to a new MediaError object whose code attribute is set to MEDIA_ERR_ABORTED.
2290 m_error = MediaError::create(MediaError::MEDIA_ERR_ABORTED);
2363 if (m_error && m_error->code() == MediaError::MEDIA_ERR_ABORTED) {
2365 // m_error is only left at MEDIA_ERR_ABORTED when the document becomes inactive (it is set to
2366 // MEDIA_ERR_ABORTED while the abortEvent is being sent, but cleared immediately afterwards).

Completed in 160 milliseconds