Commit 606b90f2 authored by Eric Willigers's avatar Eric Willigers Committed by Commit Bot

Retire rendering pipeline throttling runtime flag

Pipeline throttling for iframes with loading sheets shipped in M56
https://codereview.chromium.org/2488213005
https://www.chromestatus.com/feature/5640551701413888

The flag RenderingPipelineThrottlingLoadingIframes is no longer needed.

BUG=663193

Change-Id: Ieba672a8f7a8e3e0702a182aacf9931fec54a3d9
Reviewed-on: https://chromium-review.googlesource.com/1166747
Commit-Queue: Eric Willigers <ericwilligers@chromium.org>
Reviewed-by: default avatarSami Kyöstilä <skyostil@chromium.org>
Reviewed-by: default avatarOjan Vafai <ojan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#582043}
parent 04f5db38
...@@ -286,9 +286,7 @@ void LocalFrameView::Reset() { ...@@ -286,9 +286,7 @@ void LocalFrameView::Reset() {
// The compositor throttles the main frame using deferred commits, we can't // The compositor throttles the main frame using deferred commits, we can't
// throttle it here or it seems the root compositor doesn't get setup // throttle it here or it seems the root compositor doesn't get setup
// properly. // properly.
if (RuntimeEnabledFeatures:: lifecycle_updates_throttled_ = !GetFrame().IsMainFrame();
RenderingPipelineThrottlingLoadingIframesEnabled())
lifecycle_updates_throttled_ = !GetFrame().IsMainFrame();
has_pending_layout_ = false; has_pending_layout_ = false;
layout_scheduling_enabled_ = true; layout_scheduling_enabled_ = true;
in_synchronous_post_layout_ = false; in_synchronous_post_layout_ = false;
......
...@@ -1020,10 +1020,6 @@ ...@@ -1020,10 +1020,6 @@
name: "RenderingPipelineThrottling", name: "RenderingPipelineThrottling",
status: "stable", status: "stable",
}, },
{
name: "RenderingPipelineThrottlingLoadingIframes",
status: "stable",
},
{ {
name: "ReportingObserver", name: "ReportingObserver",
implied_by: ["DeprecationReporting", "InterventionReporting"], implied_by: ["DeprecationReporting", "InterventionReporting"],
......
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