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

  /external/webkit/WebCore/html/
MediaError.h 35 class MediaError : public RefCounted<MediaError> {
39 static PassRefPtr<MediaError> create(Code code) { return adoptRef(new MediaError(code)); }
44 MediaError(Code code) : m_code(code) { }
MediaError.idl 27 interface [Conditional=VIDEO] MediaError {
HTMLMediaElement.h 43 class MediaError;
92 PassRefPtr<MediaError> error() const;
231 void mediaEngineError(PassRefPtr<MediaError> err);
284 RefPtr<MediaError> m_error;
HTMLMediaElement.idl 30 readonly attribute MediaError error;
HTMLMediaElement.cpp 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))
    [all...]
  /external/webkit/WebCore/page/
DOMWindow.idl 543 attribute [Conditional=VIDEO, EnabledAtRuntime] MediaErrorConstructor MediaError;
    [all...]
  /external/webkit/WebCore/bindings/v8/
V8Index.h 64 V(MEDIAERROR, MediaError) \
    [all...]

Completed in 439 milliseconds