summaryrefslogtreecommitdiff
path: root/chromium/components/metrics/metrics_state_manager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/metrics/metrics_state_manager.cc')
-rw-r--r--chromium/components/metrics/metrics_state_manager.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/components/metrics/metrics_state_manager.cc b/chromium/components/metrics/metrics_state_manager.cc
index 3229da7384b..dd8931b8ab5 100644
--- a/chromium/components/metrics/metrics_state_manager.cc
+++ b/chromium/components/metrics/metrics_state_manager.cc
@@ -40,7 +40,7 @@ namespace {
// The argument used to generate a non-identifying entropy source. We want no
// more than 13 bits of entropy, so use this max to return a number in the range
// [0, 7999] as the entropy source (12.97 bits of entropy).
-const int kMaxLowEntropySize = 8000;
+const int kThisMaxLowEntropySize = 8000;
int64_t ReadEnabledDate(PrefService* local_state) {
return local_state->GetInt64(prefs::kMetricsReportingEnabledTimestamp);
@@ -321,7 +321,7 @@ std::unique_ptr<const base::FieldTrial::EntropyProvider>
MetricsStateManager::CreateLowEntropyProvider() {
int source = GetLowEntropySource();
return std::make_unique<variations::NormalizedMurmurHashEntropyProvider>(
- base::checked_cast<uint16_t>(source), kMaxLowEntropySize);
+ base::checked_cast<uint16_t>(source), kThisMaxLowEntropySize);
}
// static