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

Unified Diff: components/rappor/rappor_service.cc

Issue 188103004: C++ Readability review for holte (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 months 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: components/rappor/rappor_service.cc
diff --git a/components/rappor/rappor_service.cc b/components/rappor/rappor_service.cc
index 493e7b9d2ccafbf716306181c05f47df680c83bb..431a6534c9ed0c8370af8b74e51af2dcc528f16f 100644
--- a/components/rappor/rappor_service.cc
+++ b/components/rappor/rappor_service.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_service.h"
#include "base/base64.h"
@@ -42,13 +44,13 @@ GURL GetServerUrl() {
}
const RapporParameters kRapporParametersForType[NUM_RAPPOR_TYPES] = {
- { // ETLD_PLUS_ONE_RAPPOR_TYPE
- 16 /* Bloom filter size bytes */,
- 2 /* Bloom filter hash count */,
- rappor::PROBABILITY_75 /* Fake data probability */,
- rappor::PROBABILITY_50 /* Fake one probability */,
- rappor::PROBABILITY_75 /* One coin probability */,
- rappor::PROBABILITY_50 /* Zero coin probability */
+ {// ETLD_PLUS_ONE_RAPPOR_TYPE
+ 16 /* Bloom filter size bytes */,
+ 2 /* Bloom filter hash count */,
+ rappor::PROBABILITY_75 /* Fake data probability */,
+ rappor::PROBABILITY_50 /* Fake one probability */,
+ rappor::PROBABILITY_75 /* One coin probability */,
+ rappor::PROBABILITY_50 /* Zero coin probability */
},
};
@@ -62,7 +64,7 @@ RapporService::~RapporService() {
void RapporService::Start(PrefService* pref_service,
net::URLRequestContextGetter* request_context) {
- GURL server_url = GetServerUrl();
+ const GURL server_url = GetServerUrl();
if (!server_url.is_valid())
return;
DCHECK(!uploader_);
@@ -98,19 +100,21 @@ void RapporService::RegisterPrefs(PrefRegistrySimple* registry) {
}
void RapporService::LoadCohort(PrefService* pref_service) {
- DCHECK_EQ(cohort_, -1);
+ DCHECK(!IsInitialized());
cohort_ = pref_service->GetInteger(prefs::kRapporCohort);
+ // If the user is already assigned to a valid cohort, we're done.
if (cohort_ >= 0 && cohort_ < kNumCohorts)
return;
+ // This is the first time the client has started the service (or their
+ // preferences were corrupted). Randomly assign them to a cohort.
cohort_ = base::RandGenerator(kNumCohorts);
pref_service->SetInteger(prefs::kRapporCohort, cohort_);
}
void RapporService::LoadSecret(PrefService* pref_service) {
DCHECK(secret_.empty());
- std::string secret_base64 =
- pref_service->GetString(prefs::kRapporSecret);
+ std::string secret_base64 = pref_service->GetString(prefs::kRapporSecret);
if (!secret_base64.empty()) {
bool decoded = base::Base64Decode(secret_base64, &secret_);
if (decoded && secret_.size() == HmacByteVectorGenerator::kEntropyInputSize)
@@ -132,8 +136,9 @@ bool RapporService::ExportMetrics(RapporReports* reports) {
DCHECK_GE(cohort_, 0);
reports->set_cohort(cohort_);
- for (std::map<std::string, RapporMetric*>::iterator it = metrics_map_.begin();
- metrics_map_.end() != it;
+ for (std::map<std::string, RapporMetric*>::const_iterator it =
+ metrics_map_.begin();
+ it != metrics_map_.end();
++it) {
const RapporMetric* metric = it->second;
RapporReports::Report* report = reports->add_report();
@@ -163,7 +168,6 @@ void RapporService::RecordSampleInternal(const std::string& metric_name,
const RapporParameters& parameters,
const std::string& sample) {
DCHECK(IsInitialized());
-
RapporMetric* metric = LookUpMetric(metric_name, parameters);
metric->AddSample(sample);
}
@@ -171,9 +175,9 @@ void RapporService::RecordSampleInternal(const std::string& metric_name,
RapporMetric* RapporService::LookUpMetric(const std::string& metric_name,
const RapporParameters& parameters) {
DCHECK(IsInitialized());
- std::map<std::string, RapporMetric*>::iterator it =
+ std::map<std::string, RapporMetric*>::const_iterator it =
metrics_map_.find(metric_name);
- if (metrics_map_.end() != it) {
+ if (it != metrics_map_.end()) {
RapporMetric* metric = it->second;
DCHECK_EQ(parameters.ToString(), metric->parameters().ToString());
return metric;

Powered by Google App Engine
This is Rietveld 408576698