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

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

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/infobars/infobar_manager_impl.h ('k') | ios/chrome/browser/install_time_util.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/install_time_util.h
diff --git a/ios/chrome/browser/install_time_util.h b/ios/chrome/browser/install_time_util.h
index 37285cfd83f33db6ae357d24f97d90efcf0c84ad..47a3eb7a240d0d7bf52c1db425307cd6c7a86e4d 100644
--- a/ios/chrome/browser/install_time_util.h
+++ b/ios/chrome/browser/install_time_util.h
@@ -5,11 +5,13 @@
#ifndef IOS_CHROME_BROWSER_INSTALL_TIME_UTIL_H_
#define IOS_CHROME_BROWSER_INSTALL_TIME_UTIL_H_
+#include <stdint.h>
+
#include "base/time/time.h"
namespace install_time_util {
-extern const int64 kUnknownInstallDate;
+extern const int64_t kUnknownInstallDate;
// Computes the true installation time of the application based on the current
// install time stored in NSUserDefaults and whether or not this is a first run
« no previous file with comments | « ios/chrome/browser/infobars/infobar_manager_impl.h ('k') | ios/chrome/browser/install_time_util.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698