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

Unified Diff: rlz/mac/lib/rlz_value_store_mac.h

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/mac/lib/machine_id_mac.cc ('k') | rlz/mac/lib/rlz_value_store_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: rlz/mac/lib/rlz_value_store_mac.h
diff --git a/rlz/mac/lib/rlz_value_store_mac.h b/rlz/mac/lib/rlz_value_store_mac.h
index 1cf9699d63a0c86aba72dacf7ce1aa2aecd841b9..044a3815da925222932ff7f09234c8ae5968d983 100644
--- a/rlz/mac/lib/rlz_value_store_mac.h
+++ b/rlz/mac/lib/rlz_value_store_mac.h
@@ -5,8 +5,12 @@
#ifndef RLZ_MAC_LIB_RLZ_VALUE_STORE_MAC_H_
#define RLZ_MAC_LIB_RLZ_VALUE_STORE_MAC_H_
+#include <stddef.h>
+#include <stdint.h>
+
#include "base/compiler_specific.h"
#include "base/mac/scoped_nsobject.h"
+#include "base/macros.h"
#include "rlz/lib/rlz_value_store.h"
@class NSDictionary;
@@ -20,8 +24,8 @@ class RlzValueStoreMac : public RlzValueStore {
public:
bool HasAccess(AccessType type) override;
- bool WritePingTime(Product product, int64 time) override;
- bool ReadPingTime(Product product, int64* time) override;
+ bool WritePingTime(Product product, int64_t time) override;
+ bool ReadPingTime(Product product, int64_t* time) override;
bool ClearPingTime(Product product) override;
bool WriteAccessPointRlz(AccessPoint access_point,
« no previous file with comments | « rlz/mac/lib/machine_id_mac.cc ('k') | rlz/mac/lib/rlz_value_store_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698