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

Unified Diff: chrome/browser/chromeos/login/easy_unlock/short_lived_user_context.cc

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (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
Index: chrome/browser/chromeos/login/easy_unlock/short_lived_user_context.cc
diff --git a/chrome/browser/chromeos/login/easy_unlock/short_lived_user_context.cc b/chrome/browser/chromeos/login/easy_unlock/short_lived_user_context.cc
index 41283cce8a51cce6b40e085db7e0f0680790ff16..adc71aaf8dcb6217b1ce01588baa7010d60b5700 100644
--- a/chrome/browser/chromeos/login/easy_unlock/short_lived_user_context.cc
+++ b/chrome/browser/chromeos/login/easy_unlock/short_lived_user_context.cc
@@ -4,6 +4,8 @@
#include "chrome/browser/chromeos/login/easy_unlock/short_lived_user_context.h"
+#include <stdint.h>
+
#include "base/bind.h"
#include "base/location.h"
#include "base/task_runner.h"
@@ -15,7 +17,7 @@ namespace chromeos {
namespace {
// The number of minutes that the user context will be stored.
-const int64 kUserContextTimeToLiveMinutes = 10;
+const int64_t kUserContextTimeToLiveMinutes = 10;
} // namespace

Powered by Google App Engine
This is Rietveld 408576698