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

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

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.h
diff --git a/ios/chrome/common/app_group/app_group_metrics_mainapp.h b/ios/chrome/common/app_group/app_group_metrics_mainapp.h
index 1690c79401067f475b3ef61cc624d7946edad996..af693f278f5b9c12f9483703fcd5d95b4db60c94 100644
--- a/ios/chrome/common/app_group/app_group_metrics_mainapp.h
+++ b/ios/chrome/common/app_group/app_group_metrics_mainapp.h
@@ -6,8 +6,8 @@
#define IOS_CHROME_COMMON_APP_GROUP_APP_GROUP_METRICS_MAINAPP_H_
#import <Foundation/Foundation.h>
+#include <stdint.h>
-#include "base/basictypes.h"
#include "base/mac/scoped_block.h"
#include "ios/chrome/common/app_group/app_group_constants.h"
@@ -27,8 +27,8 @@ void ProcessPendingLogs(
// use |clientID| as client ID, and |brandCode| as brand code in the logs.
void EnableMetrics(NSString* client_id,
NSString* brand_code,
- int64 installDate,
- int64 enableMetricsDate);
+ int64_t installDate,
+ int64_t enableMetricsDate);
// Disabled the metrics collecting in extensions.
void DisableMetrics();
« no previous file with comments | « ios/chrome/common/app_group/app_group_metrics_client.h ('k') | ios/chrome/common/app_group/app_group_metrics_mainapp.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698