| Index: components/rappor/rappor_metric_unittest.cc
|
| diff --git a/components/rappor/rappor_metric_unittest.cc b/components/rappor/rappor_metric_unittest.cc
|
| index bbcb1ab36055ac2dacbc41c850d62b9f2ec1d7b8..b1ec5f77639824840c3d45adf6e73450c122cac4 100644
|
| --- a/components/rappor/rappor_metric_unittest.cc
|
| +++ b/components/rappor/rappor_metric_unittest.cc
|
| @@ -2,6 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +// Change for readability
|
| +
|
| #include "components/rappor/rappor_metric.h"
|
|
|
| #include <stdlib.h>
|
| @@ -59,14 +61,14 @@ TEST(RapporMetricTest, GetReportStatistics) {
|
| std::string secret = HmacByteVectorGenerator::GenerateEntropyInput();
|
| ByteVector report = metric.GetReport(secret);
|
|
|
| - // For the bits we actually set in the bloom filter, get a count of how
|
| + // For the bits we actually set in the Bloom filter, get a count of how
|
| // many of them reported true.
|
| ByteVector from_true_reports = report;
|
| // Real bits AND report bits.
|
| ByteVectorMerge(real_bits, real_bits, &from_true_reports);
|
| int true_from_true_count = CountBits(from_true_reports);
|
|
|
| - // For the bits we didn't set in the bloom filter, get a count of how
|
| + // For the bits we didn't set in the Bloom filter, get a count of how
|
| // many of them reported true.
|
| ByteVector from_false_reports = report;
|
| ByteVectorOr(real_bits, &from_false_reports);
|
|
|