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

Unified Diff: gpu/config/gpu_test_config.h

Issue 2172693002: Fix GPUTestConfigTest.LoadCurrentConfig on macOS Sierra. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | gpu/config/gpu_test_config.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/config/gpu_test_config.h
diff --git a/gpu/config/gpu_test_config.h b/gpu/config/gpu_test_config.h
index c936c8fce2b6094849a437d50024706bad574a81..10e88c1f2f77683d0c1b50acf60c8dde89defecb 100644
--- a/gpu/config/gpu_test_config.h
+++ b/gpu/config/gpu_test_config.h
@@ -32,13 +32,14 @@ class GPU_EXPORT GPUTestConfig {
kOsMacMavericks = 1 << 8,
kOsMacYosemite = 1 << 9,
kOsMacElCapitan = 1 << 10,
+ kOsMacSierra = 1 << 11,
kOsMac = kOsMacLeopard | kOsMacSnowLeopard | kOsMacLion |
kOsMacMountainLion | kOsMacMavericks | kOsMacYosemite |
- kOsMacElCapitan,
- kOsLinux = 1 << 11,
- kOsChromeOS = 1 << 12,
- kOsAndroid = 1 << 13,
- kOsWin10 = 1 << 14,
+ kOsMacElCapitan | kOsMacSierra,
+ kOsLinux = 1 << 12,
+ kOsChromeOS = 1 << 13,
+ kOsAndroid = 1 << 14,
+ kOsWin10 = 1 << 15,
kOsWin = kOsWinXP | kOsWinVista | kOsWin7 | kOsWin8 | kOsWin10,
};
« no previous file with comments | « no previous file | gpu/config/gpu_test_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698