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

Unified Diff: chrome/browser/chromeos/login/app_launch_controller.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/app_launch_controller.cc
diff --git a/chrome/browser/chromeos/login/app_launch_controller.cc b/chrome/browser/chromeos/login/app_launch_controller.cc
index 281dee8c58e6e0fc35fc67cc5a651a8df76a24b5..057671ff5e7dba396b007835e7afab3180649040 100644
--- a/chrome/browser/chromeos/login/app_launch_controller.cc
+++ b/chrome/browser/chromeos/login/app_launch_controller.cc
@@ -9,6 +9,7 @@
#include "base/files/file_path.h"
#include "base/json/json_file_value_serializer.h"
#include "base/logging.h"
+#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/message_loop/message_loop.h"
#include "base/time/time.h"
@@ -407,9 +408,10 @@ void AppLaunchController::OnReadyToLaunch() {
ClearNetworkWaitTimer();
- const int64 time_taken_ms = (base::TimeTicks::Now() -
- base::TimeTicks::FromInternalValue(launch_splash_start_time_)).
- InMilliseconds();
+ const int64_t time_taken_ms =
+ (base::TimeTicks::Now() -
+ base::TimeTicks::FromInternalValue(launch_splash_start_time_))
+ .InMilliseconds();
// Enforce that we show app install splash screen for some minimum amount
// of time.
« no previous file with comments | « chrome/browser/chromeos/login/app_launch_controller.h ('k') | chrome/browser/chromeos/login/app_launch_signin_screen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698