Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(821)

Unified Diff: media/base/android/media_codec_util.cc

Issue 2421963002: Blacklist Samsung Galaxy Star and Samsung Galaxy Win (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/android/media_codec_util.cc
diff --git a/media/base/android/media_codec_util.cc b/media/base/android/media_codec_util.cc
index 46bca0a3940fa319512e94d5f1f62b2f2933707b..568131ee9f2154632ce80d39df58e64fbe973390 100644
--- a/media/base/android/media_codec_util.cc
+++ b/media/base/android/media_codec_util.cc
@@ -93,10 +93,12 @@ bool MediaCodecUtil::IsMediaCodecAvailable() {
// http://crbug.com/365494, http://crbug.com/615872
// Blacklist Lenovo A6600 / A6800 on KitKat, which tends to crash a lot.
// See crbug.com/628059 . We include < K since they don't exist.
+ // GT-S5282 and GT-I8552 are for crbug.com/634920 .
if (base::android::BuildInfo::GetInstance()->sdk_int() <= 19) {
std::string model(base::android::BuildInfo::GetInstance()->model());
return model != "GT-I9100" && model != "GT-I9300" && model != "GT-N7000" &&
- model != "GT-N7100" && model != "A6600" && model != "A6800";
+ model != "GT-N7100" && model != "A6600" && model != "A6800" &&
+ model != "GT-S5282" && model != "GT-I8552";
}
return true;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698