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

Unified Diff: base/ios/ios_util.mm

Issue 2933963002: [ios] Fix omnibox baseWritingDirection and dismissal iOS11 bugs. (Closed)
Patch Set: more omnibox fixes Created 3 years, 6 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
Index: base/ios/ios_util.mm
diff --git a/base/ios/ios_util.mm b/base/ios/ios_util.mm
index 196d5ef90ae4d81b894c4c23b8d2b87b6e878696..27dd011845aaa2c4038be8cbb8fcc1d10e5acd84 100644
--- a/base/ios/ios_util.mm
+++ b/base/ios/ios_util.mm
@@ -28,6 +28,10 @@ std::string* g_icudtl_path_override = nullptr;
namespace base {
namespace ios {
+bool IsRunningOnIOS11OrLater() {
+ return IsRunningOnOrLater(11, 0, 0);
+}
+
bool IsRunningOnIOS10OrLater() {
return IsRunningOnOrLater(10, 0, 0);
}

Powered by Google App Engine
This is Rietveld 408576698