* Updated patches for v79 Remaining issue: * blank tabs when running on x86 emulators Waiting on upstream to fix that. The other upstream storage bug (https://bugs.chromium.org/p/chromium/issues/detail?id=1033655) is fixed in this version.
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
|
|
@@ -538,8 +538,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
|
|
|