| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BASE_IOS_IOS_UTIL_H_ | 5 #ifndef BASE_IOS_IOS_UTIL_H_ |
| 6 #define BASE_IOS_IOS_UTIL_H_ | 6 #define BASE_IOS_IOS_UTIL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/base_export.h" | 10 #include "base/base_export.h" |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 | 12 |
| 13 namespace base { | 13 namespace base { |
| 14 namespace ios { | 14 namespace ios { |
| 15 | 15 |
| 16 // Returns whether the operating system is iOS 8 or later. | |
| 17 BASE_EXPORT bool IsRunningOnIOS8OrLater(); | |
| 18 | |
| 19 // Returns whether the operating system is iOS 9 or later. | 16 // Returns whether the operating system is iOS 9 or later. |
| 20 BASE_EXPORT bool IsRunningOnIOS9OrLater(); | 17 BASE_EXPORT bool IsRunningOnIOS9OrLater(); |
| 21 | 18 |
| 22 // Returns whether the operating system is iOS 10 or later. | 19 // Returns whether the operating system is iOS 10 or later. |
| 23 BASE_EXPORT bool IsRunningOnIOS10OrLater(); | 20 BASE_EXPORT bool IsRunningOnIOS10OrLater(); |
| 24 | 21 |
| 25 // Returns whether the operating system is at the given version or later. | 22 // Returns whether the operating system is at the given version or later. |
| 26 BASE_EXPORT bool IsRunningOnOrLater(int32_t major, | 23 BASE_EXPORT bool IsRunningOnOrLater(int32_t major, |
| 27 int32_t minor, | 24 int32_t minor, |
| 28 int32_t bug_fix); | 25 int32_t bug_fix); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 39 BASE_EXPORT void OverridePathOfEmbeddedICU(const char* path); | 36 BASE_EXPORT void OverridePathOfEmbeddedICU(const char* path); |
| 40 | 37 |
| 41 // Returns the overriden path set by OverridePathOfEmbeddedICU(), otherwise | 38 // Returns the overriden path set by OverridePathOfEmbeddedICU(), otherwise |
| 42 // returns invalid FilePath. | 39 // returns invalid FilePath. |
| 43 BASE_EXPORT FilePath FilePathOfEmbeddedICU(); | 40 BASE_EXPORT FilePath FilePathOfEmbeddedICU(); |
| 44 | 41 |
| 45 } // namespace ios | 42 } // namespace ios |
| 46 } // namespace base | 43 } // namespace base |
| 47 | 44 |
| 48 #endif // BASE_IOS_IOS_UTIL_H_ | 45 #endif // BASE_IOS_IOS_UTIL_H_ |
| OLD | NEW |