Commit 6ffeea1a authored by Mark Mentovai's avatar Mark Mentovai

Support installation on Mac OS X 10.10 under gcapi.

BUG=419723
R=pinkerton@chromium.org

Review URL: https://codereview.chromium.org/625593002

Cr-Commit-Position: refs/heads/master@{#297845}
parent 60cbacb9
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment