Lines Matching refs:drmSupportInfo
26 DrmSupportInfo::DrmSupportInfo(const DrmSupportInfo& drmSupportInfo): in DrmSupportInfo() argument
27 mMimeTypeVector(drmSupportInfo.mMimeTypeVector), in DrmSupportInfo()
28 mFileSuffixVector(drmSupportInfo.mFileSuffixVector), in DrmSupportInfo()
29 mDescription(drmSupportInfo.mDescription) { in DrmSupportInfo()
33 bool DrmSupportInfo::operator<(const DrmSupportInfo& drmSupportInfo) const { in operator <()
36 return mDescription < drmSupportInfo.mDescription; in operator <()
39 bool DrmSupportInfo::operator==(const DrmSupportInfo& drmSupportInfo) const { in operator ==()
42 return (mDescription == drmSupportInfo.mDescription); in operator ==()
71 DrmSupportInfo& DrmSupportInfo::operator=(const DrmSupportInfo& drmSupportInfo) { in operator =() argument
72 mMimeTypeVector = drmSupportInfo.mMimeTypeVector; in operator =()
73 mFileSuffixVector = drmSupportInfo.mFileSuffixVector; in operator =()
74 mDescription = drmSupportInfo.mDescription; in operator =()