| Index: components/page_load_metrics/browser/metrics_web_contents_observer.cc
|
| diff --git a/components/page_load_metrics/browser/metrics_web_contents_observer.cc b/components/page_load_metrics/browser/metrics_web_contents_observer.cc
|
| index d11bd577ad022a1995a66b30e642295fc9d4fd1f..e5d6fae723ab5a21cf48a7d5a9ecc923bb89b156 100644
|
| --- a/components/page_load_metrics/browser/metrics_web_contents_observer.cc
|
| +++ b/components/page_load_metrics/browser/metrics_web_contents_observer.cc
|
| @@ -4,6 +4,9 @@
|
|
|
| #include "components/page_load_metrics/browser/metrics_web_contents_observer.h"
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include "base/location.h"
|
| #include "base/logging.h"
|
| #include "base/metrics/histogram.h"
|
| @@ -102,7 +105,7 @@ UserAbortType AbortTypeForPageTransition(ui::PageTransition transition) {
|
| const size_t kNumRapporHistogramBuckets = 6;
|
|
|
| uint64_t RapporHistogramBucketIndex(const base::TimeDelta& time) {
|
| - int64 seconds = time.InSeconds();
|
| + int64_t seconds = time.InSeconds();
|
| if (seconds < 2)
|
| return 0;
|
| if (seconds < 4)
|
|
|