Home | History | Annotate | Download | only in html

Lines Matching refs:Code

7  * 1. Redistributions of source code must retain the above copyright
45 typedef unsigned short Code;
47 static PassRefPtr<MediaKeyError> create(Code code, unsigned long systemCode = 0) { return adoptRef(new MediaKeyError(code, systemCode)); }
49 Code code() const { return m_code; }
53 explicit MediaKeyError(Code code, unsigned long systemCode) : m_code(code), m_systemCode(systemCode)
58 Code m_code;