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

Unified Diff: remoting/host/gcd_state_updater.cc

Issue 1547473005: Switch to standard integer types in remoting/host/. (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 | « remoting/host/gcd_state_updater.h ('k') | remoting/host/gnubby_auth_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/gcd_state_updater.cc
diff --git a/remoting/host/gcd_state_updater.cc b/remoting/host/gcd_state_updater.cc
index f49ac7aece6482862d3bcfd2c4159c81f773c85b..5b9b5786cacbb9d2c78b637cfd618fc3f695397f 100644
--- a/remoting/host/gcd_state_updater.cc
+++ b/remoting/host/gcd_state_updater.cc
@@ -4,6 +4,8 @@
#include "remoting/host/gcd_state_updater.h"
+#include <stdint.h>
+
#include "base/callback_helpers.h"
#include "base/strings/stringize_macros.h"
#include "base/time/time.h"
@@ -15,8 +17,8 @@ namespace remoting {
namespace {
-const int64 kTimerIntervalMinMs = 1000;
-const int64 kTimerIntervalMaxMs = 5 * 60 * 1000; // 5 minutes
+const int64_t kTimerIntervalMinMs = 1000;
+const int64_t kTimerIntervalMaxMs = 5 * 60 * 1000; // 5 minutes
} // namespace
« no previous file with comments | « remoting/host/gcd_state_updater.h ('k') | remoting/host/gnubby_auth_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698