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

Side by Side Diff: ios/consumer/public/base/util.h

Issue 16023013: Introduce the iOS consumer API. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Response to reviews Created 7 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 unified diff | Download patch
« no previous file with comments | « ios/consumer/public/DEPS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef IOS_CONSUME_PUBLIC_BASE_UTIL_H_
6 #define IOS_CONSUME_PUBLIC_BASE_UTIL_H_
7
8 namespace ios {
9 namespace base {
darin (slow to review) 2013/05/28 21:00:09 I recommend avoiding nested namespaces. I especia
10
11 // Returns whether the operating system is iOS 6 or later.
12 bool IsRunningOnIOS6OrLater();
13
14 // Returns whether the operating system is at the given version or later.
15 bool IsRunningOnOrLater(int major, int minor, int bug_fix);
16
17 } // namespace base
18 } // namespace ios
19
20 #endif // IOS_CONSUME_PUBLIC_BASE_UTIL_H_
OLDNEW
« no previous file with comments | « ios/consumer/public/DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698