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

Unified Diff: components/rappor/sample.cc

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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
« no previous file with comments | « components/rappor/sample.h ('k') | components/rappor/test_rappor_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/rappor/sample.cc
diff --git a/components/rappor/sample.cc b/components/rappor/sample.cc
index 160371865f38431e1df6431147be55c1bbb16065..5b169d86b9ffef9c00fc7626d4e44d62425cbe7a 100644
--- a/components/rappor/sample.cc
+++ b/components/rappor/sample.cc
@@ -20,7 +20,7 @@ Sample::Sample(int32_t cohort_seed, const RapporParameters& parameters)
: parameters_(parameters),
bloom_offset_((cohort_seed % parameters_.num_cohorts) *
parameters_.bloom_filter_hash_function_count) {
- // Must use bloom filter size that fits in uint64.
+ // Must use bloom filter size that fits in uint64_t.
DCHECK_LE(parameters_.bloom_filter_size_bytes, 8);
}
« no previous file with comments | « components/rappor/sample.h ('k') | components/rappor/test_rappor_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698