commit | 80937cd48917fc3f4ba9297c492aba0af951bd76 | [log] [tgz] |
---|---|---|
author | Raul Tambre <[email protected]> | Mon Feb 11 12:07:34 2019 |
committer | Commit Bot <[email protected]> | Mon Feb 11 12:07:34 2019 |
tree | 8ae31534965ddd2615f9e8d641bb7faafb30fe69 | |
parent | 60471ea0525e19a674499d33d36b93ab2e7b8f78 [diff] [blame] |
//components/spellcheck: Fix 64-bit truncation issues Bug: 633312, 879657 Change-Id: I25aa719c1632b7cf6b8191ce1523a6f230b98142 Reviewed-on: https://chromium-review.googlesource.com/c/1450592 Reviewed-by: Mike West <[email protected]> Reviewed-by: Tim Volodine <[email protected]> Commit-Queue: Mike West <[email protected]> Auto-Submit: Raul Tambre <[email protected]> Cr-Commit-Position: refs/heads/master@{#630726}
diff --git a/components/spellcheck/browser/spellcheck_host_metrics.h b/components/spellcheck/browser/spellcheck_host_metrics.h index 795e258..08e1e401 100644 --- a/components/spellcheck/browser/spellcheck_host_metrics.h +++ b/components/spellcheck/browser/spellcheck_host_metrics.h
@@ -85,7 +85,7 @@ int last_replaced_word_count_; // Last recorded number of unique words. - int last_unique_word_count_; + size_t last_unique_word_count_; // Time when first spellcheck happened. base::TimeTicks start_time_;