Commit 88fcf10f authored by Chris Harrelson's avatar Chris Harrelson Committed by Commit Bot

Delete unused raster-inducing scroll flag and feature name.

Tbr: nasko@chromium.org
Change-Id: Ief500917465b2cdf29f07ee627248aa7f3b9a2de
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1842752
Commit-Queue: Chris Harrelson <chrishtr@chromium.org>
Reviewed-by: default avatarChris Harrelson <chrishtr@chromium.org>
Reviewed-by: default avatarXida Chen <xidachen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#703533}
parent dd527e24
...@@ -250,9 +250,6 @@ void SetRuntimeFeaturesFromChromiumFeatures() { ...@@ -250,9 +250,6 @@ void SetRuntimeFeaturesFromChromiumFeatures() {
false); false);
} }
if (base::FeatureList::IsEnabled(features::kRasterInducingScroll))
WebRuntimeFeatures::EnableRasterInducingScroll(true);
WebRuntimeFeatures::EnableFeatureFromString( WebRuntimeFeatures::EnableFeatureFromString(
"AllowContentInitiatedDataUrlNavigations", "AllowContentInitiatedDataUrlNavigations",
base::FeatureList::IsEnabled( base::FeatureList::IsEnabled(
......
...@@ -401,10 +401,6 @@ const base::Feature kPrioritizeBootstrapTasks = { ...@@ -401,10 +401,6 @@ const base::Feature kPrioritizeBootstrapTasks = {
const base::Feature kProactivelySwapBrowsingInstance{ const base::Feature kProactivelySwapBrowsingInstance{
"ProactivelySwapBrowsingInstance", base::FEATURE_DISABLED_BY_DEFAULT}; "ProactivelySwapBrowsingInstance", base::FEATURE_DISABLED_BY_DEFAULT};
// Enable raster-inducing scroll.
const base::Feature kRasterInducingScroll{"RasterInducingScroll",
base::FEATURE_DISABLED_BY_DEFAULT};
// Reduce the amount of information in the default 'referer' header for // Reduce the amount of information in the default 'referer' header for
// cross-origin requests. // cross-origin requests.
const base::Feature kReducedReferrerGranularity{ const base::Feature kReducedReferrerGranularity{
......
...@@ -92,7 +92,6 @@ CONTENT_EXPORT extern const base::Feature ...@@ -92,7 +92,6 @@ CONTENT_EXPORT extern const base::Feature
kProcessSharingWithDefaultSiteInstances; kProcessSharingWithDefaultSiteInstances;
CONTENT_EXPORT extern const base::Feature CONTENT_EXPORT extern const base::Feature
kProcessSharingWithStrictSiteInstances; kProcessSharingWithStrictSiteInstances;
CONTENT_EXPORT extern const base::Feature kRasterInducingScroll;
CONTENT_EXPORT extern const base::Feature kReducedReferrerGranularity; CONTENT_EXPORT extern const base::Feature kReducedReferrerGranularity;
CONTENT_EXPORT extern const base::Feature kReloadHiddenTabsWithCrashedSubframes; CONTENT_EXPORT extern const base::Feature kReloadHiddenTabsWithCrashedSubframes;
CONTENT_EXPORT extern const base::Feature kRenderDocumentForMainFrame; CONTENT_EXPORT extern const base::Feature kRenderDocumentForMainFrame;
......
...@@ -153,7 +153,6 @@ class WebRuntimeFeatures { ...@@ -153,7 +153,6 @@ class WebRuntimeFeatures {
BLINK_PLATFORM_EXPORT static void EnablePrintBrowser(bool); BLINK_PLATFORM_EXPORT static void EnablePrintBrowser(bool);
BLINK_PLATFORM_EXPORT static void EnablePresentationAPI(bool); BLINK_PLATFORM_EXPORT static void EnablePresentationAPI(bool);
BLINK_PLATFORM_EXPORT static void EnablePushMessaging(bool); BLINK_PLATFORM_EXPORT static void EnablePushMessaging(bool);
BLINK_PLATFORM_EXPORT static void EnableRasterInducingScroll(bool);
BLINK_PLATFORM_EXPORT static void EnableReducedReferrerGranularity(bool); BLINK_PLATFORM_EXPORT static void EnableReducedReferrerGranularity(bool);
BLINK_PLATFORM_EXPORT static void EnableRemotePlaybackAPI(bool); BLINK_PLATFORM_EXPORT static void EnableRemotePlaybackAPI(bool);
BLINK_PLATFORM_EXPORT static void EnableResourceLoadScheduler(bool); BLINK_PLATFORM_EXPORT static void EnableResourceLoadScheduler(bool);
......
...@@ -361,10 +361,6 @@ void WebRuntimeFeatures::EnablePortals(bool enable) { ...@@ -361,10 +361,6 @@ void WebRuntimeFeatures::EnablePortals(bool enable) {
RuntimeEnabledFeatures::SetPortalsEnabled(enable); RuntimeEnabledFeatures::SetPortalsEnabled(enable);
} }
void WebRuntimeFeatures::EnableRasterInducingScroll(bool enable) {
RuntimeEnabledFeatures::SetRasterInducingScrollEnabled(enable);
}
void WebRuntimeFeatures::EnableScriptedSpeechRecognition(bool enable) { void WebRuntimeFeatures::EnableScriptedSpeechRecognition(bool enable) {
RuntimeEnabledFeatures::SetScriptedSpeechRecognitionEnabled(enable); RuntimeEnabledFeatures::SetScriptedSpeechRecognitionEnabled(enable);
} }
......
...@@ -1329,10 +1329,6 @@ ...@@ -1329,10 +1329,6 @@
name: "PushMessagingSubscriptionChange", name: "PushMessagingSubscriptionChange",
status: "experimental", status: "experimental",
}, },
{
name: "RasterInducingScroll",
status: "experimental",
},
{ {
name: "ReducedReferrerGranularity", name: "ReducedReferrerGranularity",
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment