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

Unified Diff: chrome/installer/gcapi_mac/gcapi.mm

Issue 625593002: Support installation on Mac OS X 10.10 under gcapi (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/gcapi_mac/gcapi.mm
diff --git a/chrome/installer/gcapi_mac/gcapi.mm b/chrome/installer/gcapi_mac/gcapi.mm
index 1ca583930033e25664b50153a71f2fa0220ff6c7..bef6d50e2dded3d54a2f86db4c496a3605de30e0 100644
--- a/chrome/installer/gcapi_mac/gcapi.mm
+++ b/chrome/installer/gcapi_mac/gcapi.mm
@@ -57,8 +57,8 @@ bool IsOSXVersionSupported() {
// 10.2.
int mac_os_x_minor_version = darwin_major_version - 4;
- // Chrome is known to work on 10.6 - 10.9.
- return mac_os_x_minor_version >= 6 && mac_os_x_minor_version <= 9;
+ // Chrome is known to work on 10.6 - 10.10.
+ return mac_os_x_minor_version >= 6 && mac_os_x_minor_version <= 10;
}
// Returns the pid/gid of the logged-in user, even if getuid() claims that the
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698