* Updated patches for v80 * Fix arm64 build of openH264 * Fix linking error * Update other patches too * Fix remaining crashes
26 lines
983 B
Diff
26 lines
983 B
Diff
From: Daniel Micay <danielmicay@gmail.com>
|
|
Date: Tue, 25 Dec 2018 16:19:51 -0500
|
|
Subject: Disable seed-based field trials
|
|
|
|
---
|
|
components/variations/service/variations_field_trial_creator.cc | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/components/variations/service/variations_field_trial_creator.cc b/components/variations/service/variations_field_trial_creator.cc
|
|
--- a/components/variations/service/variations_field_trial_creator.cc
|
|
+++ b/components/variations/service/variations_field_trial_creator.cc
|
|
@@ -545,8 +545,10 @@ bool VariationsFieldTrialCreator::SetupFieldTrials(
|
|
#endif // BUILDFLAG(FIELDTRIAL_TESTING_ENABLED)
|
|
bool used_seed = false;
|
|
if (!used_testing_config) {
|
|
+#if defined(FIELDTRIAL_SEED_ENABLED)
|
|
used_seed = CreateTrialsFromSeed(std::move(low_entropy_provider),
|
|
feature_list.get(), safe_seed_manager);
|
|
+#endif
|
|
}
|
|
|
|
platform_field_trials->SetupFeatureControllingFieldTrials(used_seed,
|
|
--
|
|
2.17.1
|
|
|