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

Unified Diff: gpu/config/gpu_test_config.h

Issue 1246203003: Add Windows 10 support to GPU config parser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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') | gpu/config/gpu_test_config.cc » ('J')
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 8b184d3fe2e5e6fed818561d013939466e4d1fc9..fdbf91f56d55558e56afc8529e50ede7cdc3a386 100644
--- a/gpu/config/gpu_test_config.h
+++ b/gpu/config/gpu_test_config.h
@@ -24,7 +24,6 @@ class GPU_EXPORT GPUTestConfig {
kOsWinVista = 1 << 1,
kOsWin7 = 1 << 2,
kOsWin8 = 1 << 3,
- kOsWin = kOsWinXP | kOsWinVista | kOsWin7 | kOsWin8,
kOsMacLeopard = 1 << 4,
kOsMacSnowLeopard = 1 << 5,
kOsMacLion = 1 << 6,
@@ -36,6 +35,8 @@ class GPU_EXPORT GPUTestConfig {
kOsLinux = 1 << 10,
kOsChromeOS = 1 << 11,
kOsAndroid = 1 << 12,
+ kOsWin10 = 1 << 13,
+ kOsWin = kOsWinXP | kOsWinVista | kOsWin7 | kOsWin8 | kOsWin10,
};
enum BuildType {
« no previous file with comments | « no previous file | gpu/config/gpu_test_config.cc » ('j') | gpu/config/gpu_test_config.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698