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

Unified Diff: ios/chrome/browser/install_time_util.mm

Issue 1544743002: Switch to standard integer types in ios/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « ios/chrome/browser/install_time_util.h ('k') | ios/chrome/browser/installation_notifier.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/install_time_util.mm
diff --git a/ios/chrome/browser/install_time_util.mm b/ios/chrome/browser/install_time_util.mm
index e62ebbf1788ab65a55b304707cffcb9d87f2c533..d61ffba2da9a943e211ad1112a0a39d6fc2239a2 100644
--- a/ios/chrome/browser/install_time_util.mm
+++ b/ios/chrome/browser/install_time_util.mm
@@ -5,6 +5,7 @@
#include "ios/chrome/browser/install_time_util.h"
#include <Foundation/Foundation.h>
+#include <stdint.h>
#include "base/mac/foundation_util.h"
@@ -31,7 +32,7 @@ namespace install_time_util {
// 2 is used because 0 is a magic value for Time, and 1 was the pre-M29 value
// which was migrated to a specific date (crbug.com/270124).
-const int64 kUnknownInstallDate = 2;
+const int64_t kUnknownInstallDate = 2;
base::Time ComputeInstallationTime(bool is_first_run) {
return ComputeInstallationTimeInternal(is_first_run,
« no previous file with comments | « ios/chrome/browser/install_time_util.h ('k') | ios/chrome/browser/installation_notifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698