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

Unified Diff: base/ios/ios_util.h

Issue 1538743002: Switch to standard integer types in base/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DEPS roll too Created 5 years 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
« no previous file with comments | « base/ios/device_util.mm ('k') | base/ios/ios_util.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/ios/ios_util.h
diff --git a/base/ios/ios_util.h b/base/ios/ios_util.h
index 9f65339ef0da923ec478ceef0ed7aeea9189f30d..e677adc755635f455349c032bb3647ea0f9d6974 100644
--- a/base/ios/ios_util.h
+++ b/base/ios/ios_util.h
@@ -5,8 +5,9 @@
#ifndef BASE_IOS_IOS_UTIL_H_
#define BASE_IOS_IOS_UTIL_H_
+#include <stdint.h>
+
#include "base/base_export.h"
-#include "base/basictypes.h"
namespace base {
namespace ios {
@@ -18,7 +19,9 @@ BASE_EXPORT bool IsRunningOnIOS8OrLater();
BASE_EXPORT bool IsRunningOnIOS9OrLater();
// Returns whether the operating system is at the given version or later.
-BASE_EXPORT bool IsRunningOnOrLater(int32 major, int32 minor, int32 bug_fix);
+BASE_EXPORT bool IsRunningOnOrLater(int32_t major,
+ int32_t minor,
+ int32_t bug_fix);
// Returns whether iOS is signalling that an RTL text direction should be used
// regardless of the current locale. This should not return true if the current
« no previous file with comments | « base/ios/device_util.mm ('k') | base/ios/ios_util.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698