Chromium Code Reviews| Index: components/variations/variations_seed_processor.h |
| diff --git a/components/variations/variations_seed_processor.h b/components/variations/variations_seed_processor.h |
| index a7ddd5c3118ac04daf641ac576cf782a311bea4d..f6d469b2785aa7e061b832ed624f2fb746381376 100644 |
| --- a/components/variations/variations_seed_processor.h |
| +++ b/components/variations/variations_seed_processor.h |
| @@ -40,17 +40,19 @@ class VariationsSeedProcessor { |
| // Creates field trials from the specified variations |seed|, based on the |
| // specified configuration, as specified in the parameters. |
| - void CreateTrialsFromSeed(const VariationsSeed& seed, |
| - const std::string& locale, |
| - const base::Time& reference_date, |
| - const base::Version& version, |
| - Study_Channel channel, |
| - Study_FormFactor form_factor, |
| - const std::string& hardware_class, |
| - const std::string& session_consistency_country, |
| - const std::string& permanent_consistency_country, |
| - const UIStringOverrideCallback& override_callback, |
| - base::FeatureList* feature_list); |
| + void CreateTrialsFromSeed( |
| + const VariationsSeed& seed, |
| + const std::string& locale, |
| + const base::Time& reference_date, |
| + const base::Version& version, |
| + Study_Channel channel, |
| + Study_FormFactor form_factor, |
| + const std::string& hardware_class, |
| + const std::string& session_consistency_country, |
| + const std::string& permanent_consistency_country, |
| + const UIStringOverrideCallback& override_callback, |
| + base::FeatureList* feature_list, |
| + const base::FieldTrial::EntropyProvider* low_entropy_provider); |
| private: |
| friend class VariationsSeedProcessorTest; |
| @@ -78,9 +80,11 @@ class VariationsSeedProcessor { |
| // Creates and registers a field trial from the |processed_study| data. |
| // Disables the trial if |processed_study.is_expired| is true. |
|
Alexei Svitkine (slow)
2016/05/17 16:31:35
Nit: Document low_entropy_provider param
jwd
2016/05/18 13:24:18
Done.
|
| - void CreateTrialFromStudy(const ProcessedStudy& processed_study, |
| - const UIStringOverrideCallback& override_callback, |
| - base::FeatureList* feature_list); |
| + void CreateTrialFromStudy( |
| + const ProcessedStudy& processed_study, |
| + const UIStringOverrideCallback& override_callback, |
| + base::FeatureList* feature_list, |
|
Alexei Svitkine (slow)
2016/05/17 16:31:35
Nit: non-const params should be last.
jwd
2016/05/18 13:24:18
Done.
|
| + const base::FieldTrial::EntropyProvider* low_entropy_provider); |
| DISALLOW_COPY_AND_ASSIGN(VariationsSeedProcessor); |
| }; |