Bug 818363 - Blocklist Samsung SGH-T989 on Gingerbread - r=bjacob

--HG--
extra : rebase_source : e687f37cb395c682be95115508617c95df0e1986
This commit is contained in:
Chris Double 2013-04-23 08:11:07 +12:00
parent 22160b515d
commit 41811e9fb0

View File

@ -381,6 +381,7 @@ GfxInfo::GetFeatureStatusImpl(int32_t aFeature,
// Gingerbread HTC devices are whitelisted.
// Gingerbread Samsung devices are whitelisted except for:
// Samsung devices identified in Bug 847837
// Samsung SGH-T989 (Bug 818363)
// All other Gingerbread devices are blacklisted.
bool isWhitelisted =
cManufacturer.Equals("htc", nsCaseInsensitiveCStringComparator()) ||
@ -395,7 +396,8 @@ GfxInfo::GetFeatureStatusImpl(int32_t aFeature,
cModel.Equals("GT-S7500", nsCaseInsensitiveCStringComparator()) ||
cModel.Equals("GT-S7500T", nsCaseInsensitiveCStringComparator()) ||
cModel.Equals("GT-S7500L", nsCaseInsensitiveCStringComparator()) ||
cModel.Equals("GT-S6500T", nsCaseInsensitiveCStringComparator()))
cModel.Equals("GT-S6500T", nsCaseInsensitiveCStringComparator()) ||
cModel.Equals("SGH-T989", nsCaseInsensitiveCStringComparator()))
{
isWhitelisted = false;
}