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

Unified Diff: gpu/config/gpu_driver_bug_list_json.cc

Issue 241793002: Fix machine_model behaviors in gpu blacklist. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 8 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
Index: gpu/config/gpu_driver_bug_list_json.cc
diff --git a/gpu/config/gpu_driver_bug_list_json.cc b/gpu/config/gpu_driver_bug_list_json.cc
index 4741359417a9e3e63ed1eab3d8a97431e94edab7..62a945606e7c0797b4c67c4fdbc87cd2a5109b0e 100644
--- a/gpu/config/gpu_driver_bug_list_json.cc
+++ b/gpu/config/gpu_driver_bug_list_json.cc
@@ -19,7 +19,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
{
"name": "gpu driver bug list",
// Please update the version number whenever you change this file.
- "version": "4.12",
+ "version": "5.0",
"entries": [
{
"id": 1,
@@ -656,15 +656,10 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
"value": "10.7"
}
},
- "machine_model": {
- "name": {
- "op": "=",
- "value": "MacBookPro"
- },
- "version": {
- "op": "<",
- "value": "8"
- }
+ "machine_model_name": ["MacBookPro"],
+ "machine_model_version": {
+ "op": "<",
+ "value": "8"
},
"gpu_count": {
"op": "=",

Powered by Google App Engine
This is Rietveld 408576698