From c13a523a792bb714bb049257d06c4cd0e6573de7 Mon Sep 17 00:00:00 2001 From: Jeremy Rose Date: Wed, 12 May 2021 12:03:18 -0700 Subject: [PATCH] chore: remove no-op EnableWebComponentsV0 feature (#29107) --- shell/browser/feature_list.cc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/shell/browser/feature_list.cc b/shell/browser/feature_list.cc index 59bdd50f6f97..618c9b77ad5b 100644 --- a/shell/browser/feature_list.cc +++ b/shell/browser/feature_list.cc @@ -38,12 +38,6 @@ void InitializeFeatureList() { std::string(",") + net::features::kCookiesWithoutSameSiteMustBeSecure.name; - // https://www.polymer-project.org/blog/2018-10-02-webcomponents-v0-deprecations - // https://chromium-review.googlesource.com/c/chromium/src/+/1869562 - // Any website which uses older WebComponents will fail in without this - // enabled, since Electron does not support origin trials. - enable_features += std::string(",") + "WebComponentsV0Enabled"; - #if !BUILDFLAG(ENABLE_PICTURE_IN_PICTURE) disable_features += std::string(",") + media::kPictureInPicture.name; #endif