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

Unified Diff: base/win/windows_version.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.h ('k') | content/browser/gpu/gpu_data_manager_impl_private.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/win/windows_version.cc
diff --git a/base/win/windows_version.cc b/base/win/windows_version.cc
index d192ab90ff7ef9f638ad483264f28001b989adfa..55745d2f4a3ddddaed5065b11b0a20030d687bec 100644
--- a/base/win/windows_version.cc
+++ b/base/win/windows_version.cc
@@ -52,8 +52,10 @@ Version MajorMinorBuildToVersion(int major, int minor, int build) {
return VERSION_WIN10;
} else if (build < 14393) {
return VERSION_WIN10_TH2;
+ } else if (build < 15063) {
+ return VERSION_WIN10_RS1;
} else {
- return VERSION_WIN10_R1;
+ return VERSION_WIN10_RS2;
}
} else if (major > 6) {
NOTREACHED();
« no previous file with comments | « base/win/windows_version.h ('k') | content/browser/gpu/gpu_data_manager_impl_private.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698