Home | History | Annotate | Download | only in html

Lines Matching refs:Code

7  * 1. Redistributions of source code must retain the above copyright
38 enum Code { MEDIA_ERR_ABORTED = 1, MEDIA_ERR_NETWORK, MEDIA_ERR_DECODE, MEDIA_ERR_SRC_NOT_SUPPORTED };
40 static PassRefPtr<MediaError> create(Code code) { return adoptRef(new MediaError(code)); }
42 Code code() const { return m_code; }
45 MediaError(Code code) : m_code(code) { }
47 Code m_code;