Index: rlz/chromeos/lib/rlz_value_store_chromeos.cc |
diff --git a/rlz/chromeos/lib/rlz_value_store_chromeos.cc b/rlz/chromeos/lib/rlz_value_store_chromeos.cc |
index 6714de449126da91eb8421ad578ad7c7b31821e8..8d526fea1977a8d0330b88e371184c6c93f50698 100644 |
--- a/rlz/chromeos/lib/rlz_value_store_chromeos.cc |
+++ b/rlz/chromeos/lib/rlz_value_store_chromeos.cc |
@@ -94,14 +94,14 @@ bool RlzValueStoreChromeOS::HasAccess(AccessType type) { |
return type == kReadAccess || !read_only_; |
} |
-bool RlzValueStoreChromeOS::WritePingTime(Product product, int64 time) { |
+bool RlzValueStoreChromeOS::WritePingTime(Product product, int64_t time) { |
DCHECK(CalledOnValidThread()); |
rlz_store_->SetString(GetKeyName(kPingTimeKey, product), |
base::Int64ToString(time)); |
return true; |
} |
-bool RlzValueStoreChromeOS::ReadPingTime(Product product, int64* time) { |
+bool RlzValueStoreChromeOS::ReadPingTime(Product product, int64_t* time) { |
DCHECK(CalledOnValidThread()); |
std::string ping_time; |
return rlz_store_->GetString(GetKeyName(kPingTimeKey, product), &ping_time) && |