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

Unified Diff: components/metrics/client_info.h

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn 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 | « components/metrics/clean_exit_beacon.cc ('k') | components/metrics/cloned_install_detector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/metrics/client_info.h
diff --git a/components/metrics/client_info.h b/components/metrics/client_info.h
index 733d08788789ba28ed3e9c1de3217a6350f3c376..7dcf5d8de396ef0ae6173869aedc3fc144a8ab7d 100644
--- a/components/metrics/client_info.h
+++ b/components/metrics/client_info.h
@@ -5,9 +5,10 @@
#ifndef COMPONENTS_METRICS_CLIENT_INFO_H_
#define COMPONENTS_METRICS_CLIENT_INFO_H_
+#include <stdint.h>
+
#include <string>
-#include "base/basictypes.h"
#include "base/macros.h"
namespace metrics {
@@ -23,11 +24,11 @@ struct ClientInfo {
std::string client_id;
// The installation date: represented as an epoch time in seconds.
- int64 installation_date;
+ int64_t installation_date;
// The date on which metrics reporting was enabled: represented as an epoch
// time in seconds.
- int64 reporting_enabled_date;
+ int64_t reporting_enabled_date;
};
} // namespace metrics
« no previous file with comments | « components/metrics/clean_exit_beacon.cc ('k') | components/metrics/cloned_install_detector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698