blob: b06b472b43c7ede273d429f2970a1d57ff9082e6 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/chrome_browser_field_trials.h"
#include <string>
#include "base/command_line.h"
#include "base/feature_list.h"
#include "base/files/file_util.h"
#include "base/metrics/field_trial.h"
#include "base/path_service.h"
#include "base/strings/string_util.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "chrome/browser/metrics/chrome_browser_sampling_trials.h"
#include "chrome/browser/metrics/chrome_metrics_service_accessor.h"
#include "chrome/browser/metrics/chrome_metrics_service_client.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
#include "components/metrics/metrics_pref_names.h"
#include "components/metrics/persistent_histograms.h"
#include "components/version_info/version_info.h"
#if BUILDFLAG(IS_ANDROID)
#include "base/android/build_info.h"
#include "base/android/bundle_utils.h"
#include "base/task/thread_pool/environment_config.h"
#include "chrome/browser/android/signin/fre_mobile_identity_consistency_field_trial.h"
#include "chrome/browser/chrome_browser_field_trials_mobile.h"
#include "chrome/browser/flags/android/cached_feature_flags.h"
#include "chrome/browser/flags/android/chrome_feature_list.h"
#include "chrome/common/chrome_features.h"
#endif
#if BUILDFLAG(IS_CHROMEOS_ASH)
#include "ash/services/multidevice_setup/public/cpp/first_run_field_trial.h"
#include "chrome/browser/ash/login/consolidated_consent_field_trial.h"
#endif
ChromeBrowserFieldTrials::ChromeBrowserFieldTrials(PrefService* local_state)
: local_state_(local_state) {
DCHECK(local_state_);
}
ChromeBrowserFieldTrials::~ChromeBrowserFieldTrials() {
}
void ChromeBrowserFieldTrials::SetUpFieldTrials() {
// Field trials that are shared by all platforms.
InstantiateDynamicTrials();
#if BUILDFLAG(IS_ANDROID)
chrome::SetupMobileFieldTrials();
#endif
}
void ChromeBrowserFieldTrials::SetUpFeatureControllingFieldTrials(
bool has_seed,
const base::FieldTrial::EntropyProvider* low_entropy_provider,
base::FeatureList* feature_list) {
#if BUILDFLAG(IS_CHROMEOS_ASH)
ash::consolidated_consent_field_trial::Create(feature_list, local_state_);
#endif
// Only create the fallback trials if there isn't already a variations seed
// being applied. This should occur during first run when first-run variations
// isn't supported. It's assumed that, if there is a seed, then it either
// contains the relevant studies, or is intentionally omitted, so no fallback
// is needed. The exception is for sampling trials. Fallback trials are
// created even if no variations seed was applied. This allows testing the
// fallback code by intentionally omitting the sampling trial from a
// variations seed.
metrics::CreateFallbackSamplingTrialsIfNeeded(feature_list);
metrics::CreateFallbackUkmSamplingTrialIfNeeded(feature_list);
if (!has_seed) {
#if BUILDFLAG(IS_CHROMEOS_ASH)
ash::multidevice_setup::CreateFirstRunFieldTrial(feature_list);
#endif
}
}
void ChromeBrowserFieldTrials::RegisterSyntheticTrials() {
#if BUILDFLAG(IS_ANDROID)
static constexpr char kReachedCodeProfilerTrial[] =
"ReachedCodeProfilerSynthetic2";
std::string reached_code_profiler_group =
chrome::android::GetReachedCodeProfilerTrialGroup();
if (!reached_code_profiler_group.empty()) {
ChromeMetricsServiceAccessor::RegisterSyntheticFieldTrial(
kReachedCodeProfilerTrial, reached_code_profiler_group);
}
{
// BackgroundThreadPoolSynthetic field trial.
const char* group_name;
// Target group as indicated by finch feature.
bool feature_enabled =
base::FeatureList::IsEnabled(chrome::android::kBackgroundThreadPool);
// Whether the feature was overridden by either the commandline or Finch.
bool feature_overridden =
base::FeatureList::GetInstance()->IsFeatureOverridden(
chrome::android::kBackgroundThreadPool.name);
// Whether the feature was overridden manually via the commandline.
bool cmdline_overridden =
feature_overridden &&
base::FeatureList::GetInstance()->IsFeatureOverriddenFromCommandLine(
chrome::android::kBackgroundThreadPool.name);
// The finch feature value is cached by Java in a setting and applied via a
// command line flag. Check if this has happened -- it may not have happened
// if this is the first startup after the feature is enabled.
bool actually_enabled =
base::internal::CanUseBackgroundThreadTypeForWorkerThread();
// Use the default group if either the feature wasn't overridden or if the
// feature target state and actual state don't agree. Also separate users
// that override the feature via the commandline into separate groups.
if (actually_enabled != feature_enabled || !feature_overridden) {
group_name = "Default";
} else if (cmdline_overridden && feature_enabled) {
group_name = "ForceEnabled";
} else if (cmdline_overridden && !feature_enabled) {
group_name = "ForceDisabled";
} else if (feature_enabled) {
group_name = "Enabled";
} else {
group_name = "Disabled";
}
static constexpr char kBackgroundThreadPoolTrial[] =
"BackgroundThreadPoolSynthetic";
ChromeMetricsServiceAccessor::RegisterSyntheticFieldTrial(
kBackgroundThreadPoolTrial, group_name);
}
{
// MobileIdentityConsistencyFRESynthetic field trial.
static constexpr char kFREMobileIdentityConsistencyTrial[] =
"FREMobileIdentityConsistencySynthetic";
const std::string group =
fre_mobile_identity_consistency_field_trial::GetFREFieldTrialGroup();
ChromeMetricsServiceAccessor::RegisterSyntheticFieldTrial(
kFREMobileIdentityConsistencyTrial, group);
if (fre_mobile_identity_consistency_field_trial::IsFREFieldTrialEnabled()) {
// MobileIdentityConsistencyFREVariationsSynthetic field trial.
// This trial experiments with different title and subtitle variation in
// the FRE UI. This is a follow up experiment to
// MobileIdentityConsistencyFRESynthetic and thus is only used for the
// enabled population of MobileIdentityConsistencyFRESynthetic.
static constexpr char kFREMobileIdentityConsistencyVariationsTrial[] =
"FREMobileIdentityConsistencyVariationsSynthetic";
const std::string variation_group =
fre_mobile_identity_consistency_field_trial::
GetFREVariationsFieldTrialGroup();
ChromeMetricsServiceAccessor::RegisterSyntheticFieldTrial(
kFREMobileIdentityConsistencyVariationsTrial, variation_group);
}
}
#endif // BUILDFLAG(IS_ANDROID)
}
void ChromeBrowserFieldTrials::InstantiateDynamicTrials() {
// Persistent histograms must be enabled as soon as possible.
base::FilePath metrics_dir;
if (base::PathService::Get(chrome::DIR_USER_DATA, &metrics_dir)) {
InstantiatePersistentHistograms(metrics_dir);
}
}