mirror of
https://github.com/electron/electron.git
synced 2026-02-19 03:14:51 -05:00
* chore: bump chromium in DEPS to 145.0.7620.0 * chore: bump chromium in DEPS to 145.0.7622.0 * chore: bump chromium in DEPS to 145.0.7624.0 * chore: bump chromium in DEPS to 145.0.7626.0 * chore: bump chromium in DEPS to 145.0.7628.0 * 7362759: Migrate various base::Contains() to contains() in ui | https://chromium-review.googlesource.com/c/chromium/src/+/7362759 * chore: update patches * 7411324: url: Mark deprecated functions as UNSAFE_BUFFER_USAGE https://chromium-review.googlesource.com/c/chromium/src/+/7411324 * 7366867: Store property info in CSSParserLocalContext for random() https://chromium-review.googlesource.com/c/chromium/src/+/7366867 * 7277406: Exclude PiP from getDisplayMedia picker thumbnails https://chromium-review.googlesource.com/c/chromium/src/+/7277406 * 7253489: activity_reporter: Create stub module owned by browser_process https://chromium-review.googlesource.com/c/chromium/src/+/7253489 * 7404514: Create device parental controls delegate https://chromium-review.googlesource.com/c/chromium/src/+/7404514 * 7269504: Update histograms to use the updated MediaStreamRequestResult enum https://chromium-review.googlesource.com/c/chromium/src/+/7269504 * fixup! 7253489: activity_reporter: Create stub module owned by browser_process * 7368549: Reland "Use native rollup" https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/7368549 * 4803165: Enable suppressing input event dispatch while paint-holding. https://chromium-review.googlesource.com/c/chromium/src/+/4803165 * chore: make device_parental_controls lazy --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Keeley Hammond <khammond@slack-corp.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
135 lines
5.0 KiB
C++
135 lines
5.0 KiB
C++
// Copyright (c) 2019 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "electron/shell/browser/feature_list.h"
|
|
|
|
#include <string>
|
|
|
|
#include "base/base_switches.h"
|
|
#include "base/command_line.h"
|
|
#include "base/feature_list.h"
|
|
#include "base/metrics/field_trial.h"
|
|
#include "components/spellcheck/common/spellcheck_features.h"
|
|
#include "content/common/features.h"
|
|
#include "content/public/common/content_features.h"
|
|
#include "electron/buildflags/buildflags.h"
|
|
#include "media/base/media_switches.h"
|
|
#include "net/base/features.h"
|
|
#include "printing/buildflags/buildflags.h"
|
|
#include "sandbox/policy/features.h"
|
|
#include "services/network/public/cpp/features.h"
|
|
#include "third_party/blink/public/common/features.h"
|
|
#include "ui/accessibility/ax_features.mojom-features.h"
|
|
|
|
#if BUILDFLAG(IS_MAC)
|
|
#include "device/base/features.h" // nogncheck
|
|
#endif
|
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
|
#include "pdf/pdf_features.h"
|
|
#endif
|
|
|
|
#if BUILDFLAG(IS_LINUX)
|
|
#include "printing/printing_features.h"
|
|
#endif
|
|
|
|
#if BUILDFLAG(IS_WIN)
|
|
#include "ui/views/views_features.h"
|
|
#endif
|
|
|
|
namespace electron {
|
|
|
|
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 +=
|
|
std::string(",") + features::kSpareRendererForSitePerProcess.name +
|
|
// See https://chromium-review.googlesource.com/c/chromium/src/+/6487926
|
|
// this breaks PDFs locally as we don't have GLIC infra enabled.
|
|
std::string(",") + ax::mojom::features::kScreenAIOCREnabled.name +
|
|
// See https://chromium-review.googlesource.com/c/chromium/src/+/6626905
|
|
// Needed so that ElectronBrowserClient::RegisterPendingSiteInstance does
|
|
// not throw a check.
|
|
std::string(", TraceSiteInstanceGetProcessCreation") +
|
|
// See https://chromium-review.googlesource.com/c/chromium/src/+/6910012
|
|
// Needed until we rework some of our logic and checks to enable this
|
|
// properly.
|
|
std::string(",") + network::features::kLocalNetworkAccessChecks.name +
|
|
// See 4803165: Enable suppressing input event dispatch while
|
|
// paint-holding. Needed to prevent spurious input event handling
|
|
// failures.
|
|
// TODO(codebytere): Figure out how to properly wait for paint-hold.
|
|
std::string(",") +
|
|
blink::features::kDropInputEventsWhilePaintHolding.name;
|
|
|
|
#if BUILDFLAG(IS_WIN)
|
|
// Refs https://issues.chromium.org/issues/401996981
|
|
// TODO(deepak1556): Remove this once test added in
|
|
// https://github.com/electron/electron/pull/12904
|
|
// can work without this feature.
|
|
enable_features += std::string(",") +
|
|
views::features::kEnableTransparentHwndEnlargement.name;
|
|
|
|
// See https://chromium-review.googlesource.com/c/chromium/src/+/7204292
|
|
// This feature causes the following sandbox failure on Windows:
|
|
// sandbox\policy\win\sandbox_win.cc:777 Sandbox cannot access executable
|
|
// electron.exe. Check filesystem permissions are valid.
|
|
// See https://bit.ly/31yqMJR.: Access is denied. (0x5)
|
|
disable_features +=
|
|
std::string(",") + sandbox::policy::features::kNetworkServiceSandbox.name;
|
|
#endif
|
|
|
|
#if BUILDFLAG(IS_MAC)
|
|
disable_features +=
|
|
// MacWebContentsOcclusion is causing some odd visibility
|
|
// issues with multiple web contents
|
|
std::string(",") + features::kMacWebContentsOcclusion.name;
|
|
#endif
|
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
|
// Enable window.showSaveFilePicker api for saving pdf files.
|
|
// Refs https://issues.chromium.org/issues/373852607
|
|
enable_features +=
|
|
std::string(",") + chrome_pdf::features::kPdfUseShowSaveFilePicker.name;
|
|
#endif
|
|
|
|
std::string platform_specific_enable_features =
|
|
EnablePlatformSpecificFeatures();
|
|
if (platform_specific_enable_features.size() > 0) {
|
|
enable_features += std::string(",") + platform_specific_enable_features;
|
|
}
|
|
std::string platform_specific_disable_features =
|
|
DisablePlatformSpecificFeatures();
|
|
if (platform_specific_disable_features.size() > 0) {
|
|
disable_features += std::string(",") + platform_specific_disable_features;
|
|
}
|
|
base::FeatureList::InitInstance(enable_features, disable_features);
|
|
}
|
|
|
|
void InitializeFieldTrials() {
|
|
auto* cmd_line = base::CommandLine::ForCurrentProcess();
|
|
auto force_fieldtrials =
|
|
cmd_line->GetSwitchValueASCII(::switches::kForceFieldTrials);
|
|
|
|
base::FieldTrialList::CreateTrialsFromString(force_fieldtrials);
|
|
}
|
|
|
|
#if !BUILDFLAG(IS_MAC)
|
|
std::string EnablePlatformSpecificFeatures() {
|
|
return "";
|
|
}
|
|
std::string DisablePlatformSpecificFeatures() {
|
|
return "";
|
|
}
|
|
#endif
|
|
|
|
} // namespace electron
|