| 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");
 | 
| 
 |