diff options
author | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-19 22:49:55 +0000 |
---|---|---|
committer | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-19 22:49:55 +0000 |
commit | d01f31157323886cac62425781056ae7bf6c09ba (patch) | |
tree | 4ec39a27f3b308e76884bb427f7ee2c04a1acb38 /ios | |
parent | 4c972f380a044bebd83772e14380a66143e1ceef (diff) | |
download | chromium_src-d01f31157323886cac62425781056ae7bf6c09ba.zip chromium_src-d01f31157323886cac62425781056ae7bf6c09ba.tar.gz chromium_src-d01f31157323886cac62425781056ae7bf6c09ba.tar.bz2 |
Remove IsRunningOnIOS6OrLater
iOS 5 hasn't been supported for several releases, so this is always
true.
BUG=300130
Review URL: https://codereview.chromium.org/349453002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278519 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ios')
-rw-r--r-- | ios/consumer/base/util.mm | 4 | ||||
-rw-r--r-- | ios/public/consumer/base/util.h | 3 |
2 files changed, 0 insertions, 7 deletions
diff --git a/ios/consumer/base/util.mm b/ios/consumer/base/util.mm index 1e640f5..6657c6b 100644 --- a/ios/consumer/base/util.mm +++ b/ios/consumer/base/util.mm @@ -7,10 +7,6 @@ namespace ios { -bool IsRunningOnIOS6OrLater() { - return base::ios::IsRunningOnIOS6OrLater(); -} - bool IsRunningOnOrLater(int major, int minor, int bug_fix) { return base::ios::IsRunningOnOrLater(major, minor, bug_fix); } diff --git a/ios/public/consumer/base/util.h b/ios/public/consumer/base/util.h index 5977ea7..a132de5 100644 --- a/ios/public/consumer/base/util.h +++ b/ios/public/consumer/base/util.h @@ -7,9 +7,6 @@ namespace ios { -// Returns whether the operating system is iOS 6 or later. -bool IsRunningOnIOS6OrLater(); - // Returns whether the operating system is at the given version or later. bool IsRunningOnOrLater(int major, int minor, int bug_fix); |