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

Unified Diff: gpu/config/gpu_test_config.h

Issue 1068813002: Add MacOS X 10.10 Yosemite support to GPUTestBotConfig. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Restrict access to GPUTestExpectationsParserTest::bot_config_ member. Created 5 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
« 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 b83e027a2c83db6b4180a444f70eb6ed86d41433..8b184d3fe2e5e6fed818561d013939466e4d1fc9 100644
--- a/gpu/config/gpu_test_config.h
+++ b/gpu/config/gpu_test_config.h
@@ -30,11 +30,12 @@ class GPU_EXPORT GPUTestConfig {
kOsMacLion = 1 << 6,
kOsMacMountainLion = 1 << 7,
kOsMacMavericks = 1 << 8,
+ kOsMacYosemite = 1 << 9,
kOsMac = kOsMacLeopard | kOsMacSnowLeopard | kOsMacLion |
- kOsMacMountainLion | kOsMacMavericks,
- kOsLinux = 1 << 9,
- kOsChromeOS = 1 << 10,
- kOsAndroid = 1 << 11,
+ kOsMacMountainLion | kOsMacMavericks | kOsMacYosemite,
+ kOsLinux = 1 << 10,
+ kOsChromeOS = 1 << 11,
+ kOsAndroid = 1 << 12,
};
enum BuildType {
« 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