[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,