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

Unified Diff: content/browser/gpu/gpu_data_manager_impl_private.cc

Issue 2890963002: Add enum entry for Windows 10 RS2 (Creators Update) (Closed)
Patch Set: Created 3 years, 7 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 | « base/win/windows_version.cc ('k') | gpu/ipc/service/direct_composition_surface_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/gpu/gpu_data_manager_impl_private.cc
diff --git a/content/browser/gpu/gpu_data_manager_impl_private.cc b/content/browser/gpu/gpu_data_manager_impl_private.cc
index 07d60112817e76f008b2536be9c75e54d2071907..53c6ee21ecd067dd7c1998754532638c2975e0a9 100644
--- a/content/browser/gpu/gpu_data_manager_impl_private.cc
+++ b/content/browser/gpu/gpu_data_manager_impl_private.cc
@@ -73,7 +73,8 @@ enum WinSubVersion {
kWin8_1,
kWin10,
kWin10_TH2,
- kWin10_R1,
+ kWin10_RS1,
+ kWin10_RS2,
kNumWinSubVersions
};
@@ -103,8 +104,11 @@ int GetGpuBlacklistHistogramValueWin(gpu::GpuFeatureStatus status) {
case base::win::VERSION_WIN10_TH2:
sub_version = kWin10_TH2;
break;
- case base::win::VERSION_WIN10_R1:
- sub_version = kWin10_R1;
+ case base::win::VERSION_WIN10_RS1:
+ sub_version = kWin10_RS1;
+ break;
+ case base::win::VERSION_WIN10_RS2:
+ sub_version = kWin10_RS2;
break;
}
}
« no previous file with comments | « base/win/windows_version.cc ('k') | gpu/ipc/service/direct_composition_surface_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698