2019-04-23 22:18:12 +00:00
|
|
|
// Copyright (c) 2019 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "electron/shell/browser/feature_list.h"
|
2019-04-23 22:18:12 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "base/base_switches.h"
|
|
|
|
#include "base/command_line.h"
|
|
|
|
#include "base/feature_list.h"
|
2021-03-26 00:49:00 +00:00
|
|
|
#include "base/metrics/field_trial.h"
|
2021-06-15 16:11:49 +00:00
|
|
|
#include "components/spellcheck/common/spellcheck_features.h"
|
2019-04-23 22:18:12 +00:00
|
|
|
#include "content/public/common/content_features.h"
|
2019-08-22 10:17:50 +00:00
|
|
|
#include "electron/buildflags/buildflags.h"
|
|
|
|
#include "media/base/media_switches.h"
|
2020-06-22 17:35:10 +00:00
|
|
|
#include "net/base/features.h"
|
2020-12-14 18:57:36 +00:00
|
|
|
#include "services/network/public/cpp/features.h"
|
2019-04-23 22:18:12 +00:00
|
|
|
|
2022-11-22 21:50:32 +00:00
|
|
|
#if BUILDFLAG(IS_MAC)
|
|
|
|
#include "device/base/features.h" // nogncheck
|
|
|
|
#endif
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2019-04-23 22:18:12 +00:00
|
|
|
|
|
|
|
void InitializeFeatureList() {
|
|
|
|
auto* cmd_line = base::CommandLine::ForCurrentProcess();
|
|
|
|
auto enable_features =
|
|
|
|
cmd_line->GetSwitchValueASCII(::switches::kEnableFeatures);
|
|
|
|
auto disable_features =
|
|
|
|
cmd_line->GetSwitchValueASCII(::switches::kDisableFeatures);
|
|
|
|
// Disable creation of spare renderer process with site-per-process mode,
|
|
|
|
// it interferes with our process preference tracking for non sandboxed mode.
|
|
|
|
// Can be reenabled when our site instance policy is aligned with chromium
|
|
|
|
// when node integration is enabled.
|
|
|
|
disable_features +=
|
2021-08-24 00:52:17 +00:00
|
|
|
std::string(",") + features::kSpareRendererForSitePerProcess.name;
|
2020-01-22 13:03:17 +00:00
|
|
|
|
2022-11-22 21:50:32 +00:00
|
|
|
#if BUILDFLAG(IS_MAC)
|
|
|
|
// Needed for WebUSB implementation
|
|
|
|
enable_features += std::string(",") + device::kNewUsbBackend.name;
|
|
|
|
#endif
|
|
|
|
|
2019-08-22 10:17:50 +00:00
|
|
|
#if !BUILDFLAG(ENABLE_PICTURE_IN_PICTURE)
|
|
|
|
disable_features += std::string(",") + media::kPictureInPicture.name;
|
|
|
|
#endif
|
2021-06-15 16:11:49 +00:00
|
|
|
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_WIN)
|
2021-06-15 16:11:49 +00:00
|
|
|
// Disable async spellchecker suggestions for Windows, which causes
|
|
|
|
// an empty suggestions list to be returned
|
|
|
|
disable_features +=
|
|
|
|
std::string(",") + spellcheck::kWinRetrieveSuggestionsOnlyOnDemand.name;
|
|
|
|
#endif
|
2019-04-23 22:18:12 +00:00
|
|
|
base::FeatureList::InitializeInstance(enable_features, disable_features);
|
|
|
|
}
|
|
|
|
|
2021-03-26 00:49:00 +00:00
|
|
|
void InitializeFieldTrials() {
|
|
|
|
auto* cmd_line = base::CommandLine::ForCurrentProcess();
|
|
|
|
auto force_fieldtrials =
|
|
|
|
cmd_line->GetSwitchValueASCII(::switches::kForceFieldTrials);
|
|
|
|
|
|
|
|
base::FieldTrialList::CreateTrialsFromString(force_fieldtrials);
|
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|