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

Unified Diff: chrome/browser/chromeos/boot_times_recorder.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
« no previous file with comments | « chrome/browser/chromeos/boot_times_recorder.h ('k') | chrome/browser/chromeos/camera_detector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/boot_times_recorder.cc
diff --git a/chrome/browser/chromeos/boot_times_recorder.cc b/chrome/browser/chromeos/boot_times_recorder.cc
index ea37765d18dad064f8af22acd6e0ced413fd619e..83a6585a1835427e03bd852199390f7dd1750bb0 100644
--- a/chrome/browser/chromeos/boot_times_recorder.cc
+++ b/chrome/browser/chromeos/boot_times_recorder.cc
@@ -4,6 +4,9 @@
#include "chrome/browser/chromeos/boot_times_recorder.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include <vector>
#include "base/bind.h"
@@ -113,7 +116,7 @@ static const base::FilePath::CharType kDiskPrefix[] = FPL("disk-");
// Name of the time that Chrome's main() is called.
static const base::FilePath::CharType kChromeMain[] = FPL("chrome-main");
// Delay in milliseconds before writing the login times to disk.
-static const int64 kLoginTimeWriteDelayMs = 3000;
+static const int64_t kLoginTimeWriteDelayMs = 3000;
// Names of login stats files.
static const base::FilePath::CharType kLoginSuccess[] = FPL("login-success");
« no previous file with comments | « chrome/browser/chromeos/boot_times_recorder.h ('k') | chrome/browser/chromeos/camera_detector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698