Bug 623991. Fix the Galaxy S string. a=b-f

I had the wrong string here because I was space separating the different entries

--HG--
extra : rebase_source : ed5381eb562c23ae4af8387b5668e2bf23d51030
This commit is contained in:
Jeff Muizelaar 2011-01-18 15:11:21 -05:00
parent 47330451db
commit c9574d1be0

View File

@ -203,7 +203,7 @@ GfxInfo::GetFeatureStatus(PRInt32 aFeature, PRInt32 *aStatus)
nsAutoString str; nsAutoString str;
/* Whitelist Galaxy S phones */ /* Whitelist Galaxy S phones */
if (mozilla::AndroidBridge::Bridge()->GetStaticStringField("android/os/Build", "HARDWARE", str)) { if (mozilla::AndroidBridge::Bridge()->GetStaticStringField("android/os/Build", "HARDWARE", str)) {
if (str != NS_LITERAL_STRING("samsung smdkc110")) { if (str != NS_LITERAL_STRING("smdkc110")) {
status = FEATURE_BLOCKED_DEVICE; status = FEATURE_BLOCKED_DEVICE;
} }
} }