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

Unified Diff: rlz/lib/lib_values.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/lib/financial_ping_test.cc ('k') | rlz/lib/lib_values.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: rlz/lib/lib_values.h
diff --git a/rlz/lib/lib_values.h b/rlz/lib/lib_values.h
index 05fbc6b25a1e21a4b730f0eddd20c0971423c97c..742f32f3335fb0a0729f6b06017c0fe2dc335a9c 100644
--- a/rlz/lib/lib_values.h
+++ b/rlz/lib/lib_values.h
@@ -7,7 +7,8 @@
#ifndef RLZ_LIB_LIB_VALUES_H_
#define RLZ_LIB_LIB_VALUES_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "rlz/lib/rlz_enums.h"
namespace rlz_lib {
@@ -75,8 +76,8 @@ extern const char kFinancialServer[];
extern const int kFinancialPort;
-extern const int64 kEventsPingInterval;
-extern const int64 kNoEventsPingInterval;
+extern const int64_t kEventsPingInterval;
+extern const int64_t kNoEventsPingInterval;
extern const char kFinancialPingUserAgent[];
extern const char* kFinancialPingResponseObjects[];
« no previous file with comments | « rlz/lib/financial_ping_test.cc ('k') | rlz/lib/lib_values.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698