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

Unified Diff: rlz/lib/financial_ping.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/crc8_unittest.cc ('k') | rlz/lib/financial_ping_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: rlz/lib/financial_ping.cc
diff --git a/rlz/lib/financial_ping.cc b/rlz/lib/financial_ping.cc
index b58ce96f962cf107c31493f57b60073a07431b3a..e1e5eed0688058058ee9c33d6a72f6c04a3bd508 100644
--- a/rlz/lib/financial_ping.cc
+++ b/rlz/lib/financial_ping.cc
@@ -6,13 +6,16 @@
#include "rlz/lib/financial_ping.h"
+#include <stdint.h>
+
#include "base/atomicops.h"
-#include "base/basictypes.h"
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
+#include "build/build_config.h"
#include "rlz/lib/assert.h"
#include "rlz/lib/lib_values.h"
#include "rlz/lib/machine_id.h"
@@ -64,7 +67,7 @@ namespace {
// Returns the time relative to a fixed point in the past in multiples of
// 100 ns stepts. The point in the past is arbitrary but can't change, as the
// result of this value is stored on disk.
-int64 GetSystemTimeAsInt64() {
+int64_t GetSystemTimeAsInt64() {
#if defined(OS_WIN)
FILETIME now_as_file_time;
// Relative to Jan 1, 1601 (UTC).
@@ -77,7 +80,7 @@ int64 GetSystemTimeAsInt64() {
#else
// Seconds since epoch (Jan 1, 1970).
double now_seconds = base::Time::Now().ToDoubleT();
- return static_cast<int64>(now_seconds * 1000 * 1000 * 10);
+ return static_cast<int64_t>(now_seconds * 1000 * 1000 * 10);
#endif
}
@@ -354,12 +357,12 @@ bool FinancialPing::IsPingTime(Product product, bool no_delay) {
if (!store || !store->HasAccess(RlzValueStore::kReadAccess))
return false;
- int64 last_ping = 0;
+ int64_t last_ping = 0;
if (!store->ReadPingTime(product, &last_ping))
return true;
- uint64 now = GetSystemTimeAsInt64();
- int64 interval = now - last_ping;
+ uint64_t now = GetSystemTimeAsInt64();
+ int64_t interval = now - last_ping;
// If interval is negative, clock was probably reset. So ping.
if (interval < 0)
@@ -382,7 +385,7 @@ bool FinancialPing::UpdateLastPingTime(Product product) {
if (!store || !store->HasAccess(RlzValueStore::kWriteAccess))
return false;
- uint64 now = GetSystemTimeAsInt64();
+ uint64_t now = GetSystemTimeAsInt64();
return store->WritePingTime(product, now);
}
« no previous file with comments | « rlz/lib/crc8_unittest.cc ('k') | rlz/lib/financial_ping_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698