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

Unified Diff: ios/chrome/common/app_group/app_group_metrics_mainapp.mm

Issue 1544743002: Switch to standard integer types in ios/. (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
Index: ios/chrome/common/app_group/app_group_metrics_mainapp.mm
diff --git a/ios/chrome/common/app_group/app_group_metrics_mainapp.mm b/ios/chrome/common/app_group/app_group_metrics_mainapp.mm
index 499cdec3ef4085d9b8846f12e3104ed188032537..82818f289e8e11ea52d952eae167f080d3b352da 100644
--- a/ios/chrome/common/app_group/app_group_metrics_mainapp.mm
+++ b/ios/chrome/common/app_group/app_group_metrics_mainapp.mm
@@ -4,6 +4,8 @@
#include "ios/chrome/common/app_group/app_group_metrics_mainapp.h"
+#include <stdint.h>
+
#include "base/logging.h"
#include "base/mac/scoped_nsobject.h"
#include "ios/chrome/common/app_group/app_group_constants.h"
@@ -39,8 +41,8 @@ void ProcessPendingLogs(
void EnableMetrics(NSString* client_id,
NSString* brand_code,
- int64 install_date,
- int64 enable_metrics_date) {
+ int64_t install_date,
+ int64_t enable_metrics_date) {
base::scoped_nsobject<NSUserDefaults> shared_defaults(
[[NSUserDefaults alloc] initWithSuiteName:ApplicationGroup()]);
[shared_defaults setObject:client_id forKey:@(kChromeAppClientID)];
« no previous file with comments | « ios/chrome/common/app_group/app_group_metrics_mainapp.h ('k') | ios/chrome/test/ios_chrome_unit_test_suite.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698