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

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

Issue 2409843002: Blacklist Samsung Galaxy Star Pro (GT-S7262) for Spitzer. (Closed)
Patch Set: rebased Created 4 years, 1 month 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 467449f1262ead3a0438571bf52e55f9bb16a7db..b29cc16804d8cc33b04531887bec1ae58fb1a324 100644
--- a/media/base/android/media_codec_util.cc
+++ b/media/base/android/media_codec_util.cc
@@ -101,12 +101,13 @@ 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.
+ // Blacklist Samsung Galaxy Star Pro (GT-S7262) (crbug.com/634920).
// 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-S5282" && model != "GT-I8552";
+ model != "GT-S7262" && 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