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

Unified Diff: chrome/browser/spellchecker/spellcheck_host_metrics.cc

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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: chrome/browser/spellchecker/spellcheck_host_metrics.cc
diff --git a/chrome/browser/spellchecker/spellcheck_host_metrics.cc b/chrome/browser/spellchecker/spellcheck_host_metrics.cc
index 4d997f08c335b0b8151ffb78ac403acce25de2a3..4899e10a3206e91e18995b1092f07b769f48994e 100644
--- a/chrome/browser/spellchecker/spellcheck_host_metrics.cc
+++ b/chrome/browser/spellchecker/spellcheck_host_metrics.cc
@@ -4,6 +4,8 @@
#include "chrome/browser/spellchecker/spellcheck_host_metrics.h"
+#include <stdint.h>
+
#include "base/md5.h"
#include "base/metrics/histogram.h"
@@ -18,7 +20,7 @@ SpellCheckHostMetrics::SpellCheckHostMetrics()
last_replaced_word_count_(-1),
last_unique_word_count_(-1),
start_time_(base::TimeTicks::Now()) {
- const uint64 kHistogramTimerDurationInMinutes = 30;
+ const uint64_t kHistogramTimerDurationInMinutes = 30;
recording_timer_.Start(FROM_HERE,
base::TimeDelta::FromMinutes(kHistogramTimerDurationInMinutes),
this, &SpellCheckHostMetrics::OnHistogramTimerExpired);
« no previous file with comments | « chrome/browser/spellchecker/spellcheck_host_metrics.h ('k') | chrome/browser/spellchecker/spellcheck_host_metrics_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698