// Copyright 2013 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 "content/child/runtime_features.h" #include #include "base/base_switches.h" #include "base/command_line.h" #include "base/feature_list.h" #include "base/metrics/field_trial.h" #include "base/metrics/field_trial_params.h" #include "base/strings/string_number_conversions.h" #include "base/strings/string_util.h" #include "build/build_config.h" #include "cc/base/features.h" #include "content/common/content_navigation_policy.h" #include "content/common/content_switches_internal.h" #include "content/public/common/content_features.h" #include "content/public/common/content_switches.h" #include "device/fido/features.h" #include "device/gamepad/public/cpp/gamepad_features.h" #include "gpu/config/gpu_switches.h" #include "media/base/media_switches.h" #include "net/base/features.h" #include "services/device/public/cpp/device_features.h" #include "services/network/public/cpp/features.h" #include "third_party/blink/public/common/features.h" #include "third_party/blink/public/common/loader/referrer_utils.h" #include "third_party/blink/public/common/switches.h" #include "third_party/blink/public/platform/web_runtime_features.h" #include "ui/accessibility/accessibility_features.h" #include "ui/base/ui_base_features.h" #include "ui/events/blink/blink_features.h" #include "ui/gfx/switches.h" #include "ui/gl/gl_switches.h" #include "ui/native_theme/native_theme_features.h" #if defined(OS_ANDROID) #include "base/android/build_info.h" #endif #if defined(OS_WIN) #include "base/win/windows_version.h" #endif using blink::WebRuntimeFeatures; namespace { // Sets blink runtime features for specific platforms. // This should be a last resort vs runtime_enabled_features.json5. void SetRuntimeFeatureDefaultsForPlatform( const base::CommandLine& command_line) { // Please consider setting up feature defaults for different platforms // in runtime_enabled_features.json5 instead of here // TODO(rodneyding): Move the more common cases here // to baseFeature/switch functions below and move more complex // ones to special case functions. #if defined(USE_AURA) WebRuntimeFeatures::EnableCompositedSelectionUpdate(true); #endif #if defined(OS_WIN) if (base::win::GetVersion() >= base::win::Version::WIN10) { WebRuntimeFeatures::EnableWebBluetooth(true); WebRuntimeFeatures::EnableWebBluetoothRemoteCharacteristicNewWriteValue( true); } #endif #if defined(OS_MAC) const bool enable_canvas_2d_image_chromium = command_line.HasSwitch( blink::switches::kEnableGpuMemoryBufferCompositorResources) && !command_line.HasSwitch(switches::kDisable2dCanvasImageChromium) && !command_line.HasSwitch(switches::kDisableGpu) && base::FeatureList::IsEnabled(features::kCanvas2DImageChromium); #else constexpr bool enable_canvas_2d_image_chromium = false; #endif WebRuntimeFeatures::EnableCanvas2dImageChromium( enable_canvas_2d_image_chromium); #if defined(OS_MAC) const bool enable_web_gl_image_chromium = command_line.HasSwitch( blink::switches::kEnableGpuMemoryBufferCompositorResources) && !command_line.HasSwitch(switches::kDisableWebGLImageChromium) && !command_line.HasSwitch(switches::kDisableGpu) && base::FeatureList::IsEnabled(features::kWebGLImageChromium); #else const bool enable_web_gl_image_chromium = command_line.HasSwitch(switches::kEnableWebGLImageChromium); #endif WebRuntimeFeatures::EnableWebGLImageChromium(enable_web_gl_image_chromium); #if defined(OS_ANDROID) if (command_line.HasSwitch(switches::kDisableMediaSessionAPI)) WebRuntimeFeatures::EnableMediaSession(false); #endif #if defined(OS_ANDROID) // APIs for Web Authentication are not available prior to N. WebRuntimeFeatures::EnableWebAuth( base::FeatureList::IsEnabled(features::kWebAuth) && base::android::BuildInfo::GetInstance()->sdk_int() >= base::android::SDK_VERSION_NOUGAT); #else WebRuntimeFeatures::EnableWebAuth( base::FeatureList::IsEnabled(features::kWebAuth)); #endif #if defined(OS_ANDROID) WebRuntimeFeatures::EnablePictureInPictureAPI( base::FeatureList::IsEnabled(media::kPictureInPictureAPI)); #endif #if defined(OS_ANDROID) if (base::android::BuildInfo::GetInstance()->sdk_int() >= base::android::SDK_VERSION_P) { // Display Cutout is limited to Android P+. WebRuntimeFeatures::EnableDisplayCutoutAPI(true); } #endif #if defined(OS_ANDROID) WebRuntimeFeatures::EnableMediaControlsExpandGesture( base::FeatureList::IsEnabled(media::kMediaControlsExpandGesture)); #endif } enum RuntimeFeatureEnableOptions { // - If the base::Feature default is overridden by field trial or command // line, set Blink feature to the state of the base::Feature; // - Otherwise if the base::Feature is enabled, enable the Blink feature. // - Otherwise no change. kDefault, // Enables the Blink feature when the base::Feature is overridden by field // trial or command line. Otherwise no change. Its difference from kDefault is // that the Blink feature isn't affected by the default state of the // base::Feature. This is useful for Blink origin trial features especially // those implemented in both Chromium and Blink. As origin trial only controls // the Blink features, for now we require the base::Feature to be enabled by // default, but we don't want the default enabled status affect the Blink // feature. See also https://crbug.com/1048656#c10. // This can also be used for features that are enabled by default in Chromium // but not in Blink on all platforms and we want to use the Blink status. // However, we would prefer consistent Chromium and Blink status to this. kSetOnlyIfOverridden, }; template // Helper class that describes the desired actions for the runtime feature // depending on a check for chromium base::Feature. struct RuntimeFeatureToChromiumFeatureMap { // This can be either an enabler function defined in web_runtime_features.cc // or the string name of the feature in runtime_enabled_features.json5. T feature_enabler; // The chromium base::Feature to check. const base::Feature& chromium_feature; const RuntimeFeatureEnableOptions option = kDefault; }; template void SetRuntimeFeatureFromChromiumFeature(const base::Feature& chromium_feature, RuntimeFeatureEnableOptions option, const Enabler& enabler) { using FeatureList = base::FeatureList; const bool feature_enabled = FeatureList::IsEnabled(chromium_feature); const bool is_overridden = FeatureList::GetInstance()->IsFeatureOverridden(chromium_feature.name); switch (option) { case kSetOnlyIfOverridden: if (is_overridden) enabler(feature_enabled); break; case kDefault: if (feature_enabled || is_overridden) enabler(feature_enabled); break; default: NOTREACHED(); } } // Sets blink runtime features that are either directly // controlled by Chromium base::Feature or are overridden // by base::Feature states. void SetRuntimeFeaturesFromChromiumFeatures() { using wf = WebRuntimeFeatures; // To add a runtime feature control, add a new // RuntimeFeatureToChromiumFeatureMap entry here if there is a custom // enabler function defined. Otherwise add the entry with string name // in the next list. const RuntimeFeatureToChromiumFeatureMap blinkFeatureToBaseFeatureMapping[] = { // TODO(rodneyding): Sort features in alphabetical order {wf::EnableWebUsb, features::kWebUsb}, {wf::EnableBlockingFocusWithoutUserActivation, blink::features::kBlockingFocusWithoutUserActivation}, {wf::EnableNotificationContentImage, features::kNotificationContentImage, kSetOnlyIfOverridden}, {wf::EnablePeriodicBackgroundSync, features::kPeriodicBackgroundSync}, {wf::EnableWebXR, features::kWebXr}, {wf::EnableWebXRARModule, features::kWebXrArModule}, {wf::EnableWebXRHitTest, features::kWebXrHitTest}, {wf::EnableWebXRAnchors, features::kWebXrIncubations}, {wf::EnableWebXRCameraAccess, features::kWebXrIncubations}, {wf::EnableWebXRDepth, features::kWebXrIncubations}, {wf::EnableWebXRImageTracking, features::kWebXrIncubations}, {wf::EnableWebXRLightEstimation, features::kWebXrIncubations}, {wf::EnableWebXRPlaneDetection, features::kWebXrIncubations}, {wf::EnableWebXRViewportScale, features::kWebXrIncubations}, {wf::EnableUserActivationSameOriginVisibility, features::kUserActivationSameOriginVisibility}, {wf::EnableExpensiveBackgroundTimerThrottling, features::kExpensiveBackgroundTimerThrottling}, {wf::EnableTimerThrottlingForHiddenFrames, features::kTimerThrottlingForHiddenFrames}, {wf::EnableSendBeaconThrowForBlobWithNonSimpleType, features::kSendBeaconThrowForBlobWithNonSimpleType}, {wf::EnablePaymentRequest, features::kWebPayments}, {wf::EnableSecurePaymentConfirmationDebug, features::kSecurePaymentConfirmationDebug}, {wf::EnablePaymentHandlerMinimalUI, features::kWebPaymentsMinimalUI}, {wf::EnablePaymentApp, features::kServiceWorkerPaymentApps}, {wf::EnablePushSubscriptionChangeEvent, features::kPushSubscriptionChangeEvent}, {wf::EnableGenericSensorExtraClasses, features::kGenericSensorExtraClasses}, {wf::EnableMediaCastOverlayButton, media::kMediaCastOverlayButton}, {wf::EnableLazyInitializeMediaControls, features::kLazyInitializeMediaControls}, {wf::EnableMediaEngagementBypassAutoplayPolicies, media::kMediaEngagementBypassAutoplayPolicies}, {wf::EnableAllowActivationDelegationAttr, features::kAllowActivationDelegationAttr}, {wf::EnableLazyFrameLoading, features::kLazyFrameLoading}, {wf::EnableLazyFrameVisibleLoadTimeMetrics, features::kLazyFrameVisibleLoadTimeMetrics}, {wf::EnableLazyImageLoading, features::kLazyImageLoading}, {wf::EnableLazyImageVisibleLoadTimeMetrics, features::kLazyImageVisibleLoadTimeMetrics}, {wf::EnablePictureInPicture, media::kPictureInPicture}, {wf::EnableCacheInlineScriptCode, features::kCacheInlineScriptCode}, {wf::EnableExperimentalProductivityFeatures, features::kExperimentalProductivityFeatures}, {wf::EnableFeaturePolicyForSandbox, features::kFeaturePolicyForSandbox}, {wf::EnableAccessibilityExposeDisplayNone, features::kEnableAccessibilityExposeDisplayNone}, {wf::EnableAccessibilityExposeHTMLElement, features::kEnableAccessibilityExposeHTMLElement}, {wf::EnableAccessibilityExposeIgnoredNodes, features::kEnableAccessibilityExposeIgnoredNodes}, {wf::EnableAccessibilityUseAXPositionForDocumentMarkers, features::kUseAXPositionForDocumentMarkers}, {wf::EnableAllowSyncXHRInPageDismissal, blink::features::kAllowSyncXHRInPageDismissal}, {wf::EnableAutoplayIgnoresWebAudio, media::kAutoplayIgnoreWebAudio}, {wf::EnablePortals, blink::features::kPortals, kSetOnlyIfOverridden}, {wf::EnableImplicitRootScroller, blink::features::kImplicitRootScroller}, {wf::EnableTextFragmentAnchor, blink::features::kTextFragmentAnchor}, {wf::EnableBackgroundFetch, features::kBackgroundFetch}, {wf::EnableForcedColors, features::kForcedColors}, {wf::EnableFractionalScrollOffsets, features::kFractionalScrollOffsets}, #if defined(OS_ANDROID) {wf::EnableGetDisplayMedia, features::kUserMediaScreenCapturing}, #endif {wf::EnableGetCurrentBrowsingContextMedia, blink::features::kRTCGetCurrentBrowsingContextMedia}, {wf::EnableSignedExchangePrefetchCacheForNavigations, features::kSignedExchangePrefetchCacheForNavigations}, {wf::EnableSignedExchangeSubresourcePrefetch, features::kSignedExchangeSubresourcePrefetch}, {wf::EnableIdleDetection, features::kIdleDetection, kSetOnlyIfOverridden}, {wf::EnableSkipTouchEventFilter, blink::features::kSkipTouchEventFilter}, {wf::EnableWebOTP, features::kWebOTP, kSetOnlyIfOverridden}, {wf::EnableClickPointerEvent, features::kClickPointerEvent}, {wf::EnableConsolidatedMovementXY, features::kConsolidatedMovementXY}, {wf::EnableCooperativeScheduling, features::kCooperativeScheduling}, {wf::EnableMouseSubframeNoImplicitCapture, features::kMouseSubframeNoImplicitCapture}, {wf::EnableSubresourceWebBundles, features::kSubresourceWebBundles}, {wf::EnableCookieDeprecationMessages, features::kCookieDeprecationMessages}, {wf::EnableSameSiteByDefaultCookies, net::features::kSameSiteByDefaultCookies}, {wf::EnableCookiesWithoutSameSiteMustBeSecure, net::features::kCookiesWithoutSameSiteMustBeSecure}, {wf::EnablePointerLockOptions, features::kPointerLockOptions, kSetOnlyIfOverridden}, {wf::EnableDocumentPolicy, features::kDocumentPolicy}, {wf::EnableDocumentPolicyNegotiation, features::kDocumentPolicyNegotiation}, {wf::EnableScrollUnification, features::kScrollUnification}, {wf::EnableNeverSlowMode, features::kNeverSlowMode}, {wf::EnableVideoPlaybackQuality, features::kVideoPlaybackQuality}, {wf::EnableBrowserVerifiedUserActivationKeyboard, features::kBrowserVerifiedUserActivationKeyboard}, {wf::EnableBrowserVerifiedUserActivationMouse, features::kBrowserVerifiedUserActivationMouse}, {wf::EnablePercentBasedScrolling, features::kPercentBasedScrolling}, #if defined(OS_ANDROID) {wf::EnableWebNfc, features::kWebNfc, kSetOnlyIfOverridden}, #endif {wf::EnableInstalledApp, features::kInstalledApp}, {wf::EnableWebAuthenticationGetAssertionFeaturePolicy, device::kWebAuthGetAssertionFeaturePolicy}, {wf::EnableTransformInterop, blink::features::kTransformInterop}, {wf::EnableVideoWakeLockOptimisationHiddenMuted, media::kWakeLockOptimisationHiddenMuted}, {wf::EnableMediaFeeds, media::kMediaFeeds}, {wf::EnableRestrictGamepadAccess, features::kRestrictGamepadAccess}, {wf::EnableCompositingOptimizations, blink::features::kCompositingOptimizations}, {wf::EnableConversionMeasurementInfraSupport, features::kConversionMeasurement}, {wf::EnableParseUrlProtocolHandler, blink::features::kWebAppEnableProtocolHandlers}, {wf::EnableWebID, features::kWebID}, {wf::EnableWheelEventRegions, features::kWheelEventRegions}, }; for (const auto& mapping : blinkFeatureToBaseFeatureMapping) { SetRuntimeFeatureFromChromiumFeature( mapping.chromium_feature, mapping.option, mapping.feature_enabler); } // TODO(crbug/832393): Cleanup the inconsistency between custom WRF enabler // function and using feature string name with EnableFeatureFromString. const RuntimeFeatureToChromiumFeatureMap runtimeFeatureNameToChromiumFeatureMapping[] = { {"AddressSpace", features::kBlockInsecurePrivateNetworkRequests}, {"AllowContentInitiatedDataUrlNavigations", features::kAllowContentInitiatedDataUrlNavigations}, {"AndroidDownloadableFontsMatching", features::kAndroidDownloadableFontsMatching}, {"AudioWorkletRealtimeThread", blink::features::kAudioWorkletRealtimeThread}, {"BlockCredentialedSubresources", features::kBlockCredentialedSubresources}, {"BlockHTMLParserOnStyleSheets", blink::features::kBlockHTMLParserOnStyleSheets}, {"CSSColorSchemeUARendering", features::kCSSColorSchemeUARendering}, {"CSSReducedFontLoadingLayoutInvalidations", blink::features::kCSSReducedFontLoadingLayoutInvalidations}, {"CSSMatchedPropertiesCacheDependencies", blink::features::kCSSMatchedPropertiesCacheDependencies}, {"FeaturePolicyForClientHints", features::kFeaturePolicyForClientHints}, {"EditingNG", blink::features::kEditingNG}, {"FlexAspectRatio", blink::features::kFlexAspectRatio}, {"FontAccess", blink::features::kFontAccess}, {"FontSrcLocalMatching", features::kFontSrcLocalMatching}, {"ForceSynchronousHTMLParsing", blink::features::kForceSynchronousHTMLParsing}, {"IgnoreCrossOriginWindowWhenNamedAccessOnWindow", blink::features::kIgnoreCrossOriginWindowWhenNamedAccessOnWindow}, {"LangClientHintHeader", features::kLangClientHintHeader}, {"LayoutNG", blink::features::kLayoutNG}, {"LayoutNGFieldset", blink::features::kLayoutNGFieldset}, {"LayoutNGFragmentItem", blink::features::kFragmentItem}, {"LegacyWindowsDWriteFontFallback", features::kLegacyWindowsDWriteFontFallback}, {"LinkDisabledNewSpecBehavior", blink::features::kLinkDisabledNewSpecBehavior}, {"OriginPolicy", features::kOriginPolicy}, {"OriginIsolationHeader", features::kOriginIsolationHeader}, {"ParentNodeReplaceChildren", blink::features::kParentNodeReplaceChildren}, {"RawClipboard", blink::features::kRawClipboard}, {"StorageAccessAPI", blink::features::kStorageAccessAPI}, {"TargetBlankImpliesNoOpener", blink::features::kTargetBlankImpliesNoOpener}, {"TrustedDOMTypes", features::kTrustedDOMTypes}, {"UserAgentClientHint", features::kUserAgentClientHint}, {"WebAppManifestDisplayOverride", features::kWebAppManifestDisplayOverride}, {"WebAppWindowControlsOverlay", features::kWebAppWindowControlsOverlay}, {"WebXRMultiGpu", blink::features::kWebXrMultiGpu}, }; for (const auto& mapping : runtimeFeatureNameToChromiumFeatureMapping) { SetRuntimeFeatureFromChromiumFeature( mapping.chromium_feature, mapping.option, [&mapping](bool enabled) { wf::EnableFeatureFromString(mapping.feature_enabler, enabled); }); } } // Helper class that describes the desired enable/disable action // for a runtime feature when a command line switch exists. struct SwitchToFeatureMap { // The enabler function defined in web_runtime_features.cc. void (*feature_enabler)(bool); // The switch to check for on command line. const char* switch_name; // This is the desired state for the runtime feature if the // switch exists on command line. bool target_enabled_state; }; // Sets blink runtime features controlled by command line switches. void SetRuntimeFeaturesFromCommandLine(const base::CommandLine& command_line) { // To add a new switch-controlled runtime feature, add a new // SwitchToFeatureMap entry to the initializer list below. // Note: command line switches are now discouraged, please consider // using base::Feature instead. // https://chromium.googlesource.com/chromium/src/+/refs/heads/master/docs/configuration.md#switches using wrf = WebRuntimeFeatures; const SwitchToFeatureMap switchToFeatureMapping[] = { // Stable Features {wrf::EnablePermissionsAPI, switches::kDisablePermissionsAPI, false}, {wrf::EnablePresentationAPI, switches::kDisablePresentationAPI, false}, {wrf::EnableRemotePlaybackAPI, switches::kDisableRemotePlaybackAPI, false}, {wrf::EnableTargetBlankImpliesNoOpener, switches::kDisableTargetBlankImpliesNoOpener, false}, {wrf::EnableTimerThrottlingForBackgroundTabs, switches::kDisableBackgroundTimerThrottling, false}, // End of Stable Features {wrf::EnableDatabase, switches::kDisableDatabases, false}, {wrf::EnableNotifications, switches::kDisableNotifications, false}, // Chrome's Push Messaging implementation relies on Web Notifications. {wrf::EnablePushMessaging, switches::kDisableNotifications, false}, {wrf::EnableSharedWorker, switches::kDisableSharedWorkers, false}, {wrf::EnableScriptedSpeechRecognition, switches::kDisableSpeechAPI, false}, {wrf::EnableScriptedSpeechSynthesis, switches::kDisableSpeechSynthesisAPI, false}, {wrf::EnableFileSystem, switches::kDisableFileSystem, false}, {wrf::EnableWebGLDraftExtensions, switches::kEnableWebGLDraftExtensions, true}, {wrf::EnableAutomationControlled, switches::kEnableAutomation, true}, {wrf::EnableAutomationControlled, switches::kHeadless, true}, {wrf::EnableAutomationControlled, switches::kRemoteDebuggingPipe, true}, {wrf::ForceOverlayFullscreenVideo, switches::kForceOverlayFullscreenVideo, true}, {wrf::EnablePreciseMemoryInfo, switches::kEnablePreciseMemoryInfo, true}, {wrf::EnableNetInfoDownlinkMax, switches::kEnableNetworkInformationDownlinkMax, true}, {wrf::EnableWebGPU, switches::kEnableUnsafeWebGPU, true}, {wrf::EnableTextFragmentAnchor, switches::kDisableScrollToTextFragment, false}, {wrf::EnableAccessibilityObjectModel, switches::kEnableAccessibilityObjectModel, true}, {wrf::EnableAllowSyncXHRInPageDismissal, switches::kAllowSyncXHRInPageDismissal, true}, }; for (const auto& mapping : switchToFeatureMapping) { if (command_line.HasSwitch(mapping.switch_name)) mapping.feature_enabler(mapping.target_enabled_state); } // Set EnableAutomationControlled if the caller passes // --remote-debugging-port=0 on the command line. This means // the caller has requested an ephemeral port which is how ChromeDriver // launches the browser by default. // If the caller provides a specific port number, this is // more likely for attaching a debugger, so we should leave // EnableAutomationControlled unset to ensure the browser behaves as it does // when not under automation control. if (command_line.HasSwitch(switches::kRemoteDebuggingPort)) { std::string port_str = command_line.GetSwitchValueASCII(::switches::kRemoteDebuggingPort); int port; if (base::StringToInt(port_str, &port) && port == 0) { WebRuntimeFeatures::EnableAutomationControlled(true); } } } // Sets blink runtime features controlled by FieldTrial parameter values. void SetRuntimeFeaturesFromFieldTrialParams() { // Automatic lazy frame loading by default is enabled and restricted to users // with Lite Mode (aka Data Saver) turned on. Note that in practice, this also // restricts automatic lazy loading by default to Android, since Lite Mode is // only accessible through UI on Android. WebRuntimeFeatures::EnableAutomaticLazyFrameLoading( base::GetFieldTrialParamByFeatureAsBool( features::kLazyFrameLoading, "automatic-lazy-load-frames-enabled", true)); WebRuntimeFeatures::EnableRestrictAutomaticLazyFrameLoadingToDataSaver( base::GetFieldTrialParamByFeatureAsBool( features::kLazyFrameLoading, "restrict-lazy-load-frames-to-data-saver-only", true)); WebRuntimeFeatures::EnableAutoLazyLoadOnReloads( base::GetFieldTrialParamByFeatureAsBool( features::kLazyFrameLoading, "enable-lazy-load-on-reload", false)); // Automatic lazy image loading by default is enabled and restricted to users // with Lite Mode (aka Data Saver) turned on. Note that in practice, this also // restricts automatic lazy loading by default to Android, since Lite Mode is // only accessible through UI on Android. WebRuntimeFeatures::EnableAutomaticLazyImageLoading( base::GetFieldTrialParamByFeatureAsBool( features::kLazyImageLoading, "automatic-lazy-load-images-enabled", true)); WebRuntimeFeatures::EnableRestrictAutomaticLazyImageLoadingToDataSaver( base::GetFieldTrialParamByFeatureAsBool( features::kLazyImageLoading, "restrict-lazy-load-images-to-data-saver-only", true)); } // Sets blink runtime features that depend on a combination // of args rather than a single check of base::Feature or switch. // This can be a combination of both or custom checking logic // not covered by other functions. In short, this should be used // as a last resort. void SetCustomizedRuntimeFeaturesFromCombinedArgs( const base::CommandLine& command_line) { // CAUTION: Only add custom enabling logic here if it cannot // be covered by the other functions. if (!command_line.HasSwitch(switches::kDisableYUVImageDecoding) && base::FeatureList::IsEnabled( blink::features::kDecodeJpeg420ImagesToYUV)) { WebRuntimeFeatures::EnableDecodeJpeg420ImagesToYUV(true); } if (!command_line.HasSwitch(switches::kDisableYUVImageDecoding) && base::FeatureList::IsEnabled( blink::features::kDecodeLossyWebPImagesToYUV)) { WebRuntimeFeatures::EnableDecodeLossyWebPImagesToYUV(true); } WebRuntimeFeatures::EnableSharedArrayBuffer( base::FeatureList::IsEnabled(features::kSharedArrayBuffer) || base::FeatureList::IsEnabled(features::kWebAssemblyThreads)); // These checks are custom wrappers around base::FeatureList::IsEnabled // They're moved here to distinguish them from actual base checks WebRuntimeFeatures::EnableOverlayScrollbars(ui::IsOverlayScrollbarEnabled()); if (base::FeatureList::IsEnabled(blink::features::kFileHandlingAPI)) { WebRuntimeFeatures::EnableFeatureFromString("FileHandling", true); } // TODO(rodneyding): This is a rare case for a stable feature // Need to investigate more to determine whether to refactor it. if (command_line.HasSwitch(switches::kDisableV8IdleTasks)) WebRuntimeFeatures::EnableV8IdleTasks(false); else WebRuntimeFeatures::EnableV8IdleTasks(true); WebRuntimeFeatures::EnableBackForwardCache( content::IsBackForwardCacheEnabled()); if (base::FeatureList::IsEnabled(features::kDirectSockets)) WebRuntimeFeatures::EnableDirectSockets(true); if (base::FeatureList::IsEnabled( blink::features::kAppCacheRequireOriginTrial)) { // The kAppCacheRequireOriginTrial is a flag that controls whether or not // the renderer AppCache api and backend is gated by an origin trial. If // on, then AppCache is disabled but can be re-enabled by the origin trial. // The origin trial will not turn on the feature if the base::Feature // AppCache is disabled. WebRuntimeFeatures::EnableFeatureFromString("AppCache", false); } else { // If the origin trial is not required, then the kAppCache feature / // about:flag is a disable-only kill switch to allow developers to test // their application with AppCache fully disabled. if (!base::FeatureList::IsEnabled(blink::features::kAppCache)) WebRuntimeFeatures::EnableFeatureFromString("AppCache", false); } if (base::FeatureList::IsEnabled(network::features::kTrustTokens)) { // See https://bit.ly/configuring-trust-tokens. using network::features::TrustTokenOriginTrialSpec; switch ( network::features::kTrustTokenOperationsRequiringOriginTrial.Get()) { case TrustTokenOriginTrialSpec::kOriginTrialNotRequired: // Setting TrustTokens=true enables the Trust Tokens interface; // TrustTokensAlwaysAllowIssuance disables a runtime check during // issuance that the origin trial is active (see // blink/.../trust_token_issuance_authorization.h). WebRuntimeFeatures::EnableTrustTokens(true); WebRuntimeFeatures::EnableTrustTokensAlwaysAllowIssuance(true); break; case TrustTokenOriginTrialSpec::kAllOperationsRequireOriginTrial: // The origin trial itself will be responsible for enabling the // TrustTokens RuntimeEnabledFeature. WebRuntimeFeatures::EnableTrustTokens(false); WebRuntimeFeatures::EnableTrustTokensAlwaysAllowIssuance(false); break; case TrustTokenOriginTrialSpec::kOnlyIssuanceRequiresOriginTrial: // At issuance, a runtime check will be responsible for checking that // the origin trial is present. WebRuntimeFeatures::EnableTrustTokens(true); WebRuntimeFeatures::EnableTrustTokensAlwaysAllowIssuance(false); break; } } } // Ensures that the various ways of enabling/disabling features do not produce // an invalid configuration. void ResolveInvalidConfigurations() { // Portals cannot be enabled without the support of the browser process. if (!base::FeatureList::IsEnabled(blink::features::kPortals)) { LOG_IF(WARNING, WebRuntimeFeatures::IsPortalsEnabled()) << "Portals cannot be enabled in this configuration. Use --" << switches::kEnableFeatures << "=" << blink::features::kPortals.name << " instead."; WebRuntimeFeatures::EnablePortals(false); } } } // namespace namespace content { void SetRuntimeFeaturesDefaultsAndUpdateFromArgs( const base::CommandLine& command_line) { // Sets experimental features. bool enable_experimental_web_platform_features = command_line.HasSwitch(switches::kEnableExperimentalWebPlatformFeatures); bool enable_blink_test_features = command_line.HasSwitch(switches::kEnableBlinkTestFeatures); if (enable_blink_test_features) { enable_experimental_web_platform_features = true; WebRuntimeFeatures::EnableTestOnlyFeatures(true); } if (enable_experimental_web_platform_features) WebRuntimeFeatures::EnableExperimentalFeatures(true); SetRuntimeFeatureDefaultsForPlatform(command_line); // Sets origin trial features. if (command_line.HasSwitch( switches::kDisableOriginTrialControlledBlinkFeatures)) { WebRuntimeFeatures::EnableOriginTrialControlledFeatures(false); } // TODO(rodneyding): add doc explaining ways to add new runtime features // controls in the following functions. SetRuntimeFeaturesFromChromiumFeatures(); SetRuntimeFeaturesFromCommandLine(command_line); SetRuntimeFeaturesFromFieldTrialParams(); SetCustomizedRuntimeFeaturesFromCombinedArgs(command_line); // Enable explicitly enabled features, and then disable explicitly disabled // ones. for (const std::string& feature : FeaturesFromSwitch(command_line, switches::kEnableBlinkFeatures)) { WebRuntimeFeatures::EnableFeatureFromString(feature, true); } for (const std::string& feature : FeaturesFromSwitch(command_line, switches::kDisableBlinkFeatures)) { WebRuntimeFeatures::EnableFeatureFromString(feature, false); } ResolveInvalidConfigurations(); } } // namespace content