commit | 8e1ba3a7775c8f22efdb544611cdacc2b4c52cb2 | [log] [tgz] |
---|---|---|
author | Joemer Ramos <[email protected]> | Fri Jun 16 18:25:09 2023 |
committer | Chromium LUCI CQ <[email protected]> | Fri Jun 16 18:25:09 2023 |
tree | 0c39e20ca2bcff09f701fe255decc7ae59764ace | |
parent | 53f9e9f40017163e933fb7d82acd046b2696aae3 [diff] [blame] |
[iOS] Create base::ios::IsRunningOnIOS17OrLater Fixed: 1455468 Change-Id: Ic7af56d505475c141f6a30d7b80e986292bd0173 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4621347 Reviewed-by: Rohit Rao <[email protected]> Commit-Queue: Joemer Ramos <[email protected]> Cr-Commit-Position: refs/heads/main@{#1158980}
diff --git a/base/ios/ios_util.h b/base/ios/ios_util.h index feaf7257..d847d29 100644 --- a/base/ios/ios_util.h +++ b/base/ios/ios_util.h
@@ -32,6 +32,9 @@ // Returns whether the operating system is iOS 16 or later. BASE_EXPORT bool IsRunningOnIOS16OrLater(); +// Returns whether the operating system is iOS 17 or later. +BASE_EXPORT bool IsRunningOnIOS17OrLater(); + // Returns whether the operating system is at the given version or later. BASE_EXPORT bool IsRunningOnOrLater(int32_t major, int32_t minor,