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

Unified Diff: rlz/lib/lib_values.cc

Issue 1547683004: Switch to standard integer types in rlz/. (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 | « rlz/lib/lib_values.h ('k') | rlz/lib/machine_id.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: rlz/lib/lib_values.cc
diff --git a/rlz/lib/lib_values.cc b/rlz/lib/lib_values.cc
index 397668bc85cf62ad6d0739b8315a423698826e32..1829993fdfe91820df0989a3c6390a8845481c67 100644
--- a/rlz/lib/lib_values.cc
+++ b/rlz/lib/lib_values.cc
@@ -45,8 +45,8 @@ const char kFinancialServer[] = "clients1.google.com";
const int kFinancialPort = 80;
// Ping times in 100-nanosecond intervals.
-const int64 kEventsPingInterval = 24LL * 3600LL * 10000000LL; // 1 day
-const int64 kNoEventsPingInterval = kEventsPingInterval * 7LL; // 1 week
+const int64_t kEventsPingInterval = 24LL * 3600LL * 10000000LL; // 1 day
+const int64_t kNoEventsPingInterval = kEventsPingInterval * 7LL; // 1 week
const char kFinancialPingUserAgent[] = "Mozilla/4.0 (compatible; Win32)";
const char* kFinancialPingResponseObjects[] = { "text/*", NULL };
« no previous file with comments | « rlz/lib/lib_values.h ('k') | rlz/lib/machine_id.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698