From c30a6232df03e1efbd9f3b226777b07e087a1122 Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Mon, 12 Oct 2020 14:27:29 +0200 Subject: BASELINE: Update Chromium to 85.0.4183.140 Change-Id: Iaa42f4680837c57725b1344f108c0196741f6057 Reviewed-by: Allan Sandfeld Jensen --- chromium/components/performance_manager/features.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'chromium/components/performance_manager/features.cc') diff --git a/chromium/components/performance_manager/features.cc b/chromium/components/performance_manager/features.cc index 057d2fb49d3..a5836952e93 100644 --- a/chromium/components/performance_manager/features.cc +++ b/chromium/components/performance_manager/features.cc @@ -24,6 +24,9 @@ const base::FeatureParam kMinimumThrottleTimeoutMilliseconds = { const base::FeatureParam kMaximumThrottleTimeoutMilliseconds = { &kTabLoadingFrameNavigationThrottles, "MaximumThrottleTimeoutMilliseconds", 40000}; +// This defaults to 3 since 3 * 99th%ile FCP ~= 99th%ile LCP. +const base::FeatureParam kFCPMultiple = { + &kTabLoadingFrameNavigationThrottles, "FCPMultiple", 3.0}; TabLoadingFrameNavigationThrottlesParams:: TabLoadingFrameNavigationThrottlesParams() = default; @@ -39,6 +42,7 @@ TabLoadingFrameNavigationThrottlesParams::GetParams() { kMinimumThrottleTimeoutMilliseconds.Get()); params.maximum_throttle_timeout = base::TimeDelta::FromMilliseconds( kMaximumThrottleTimeoutMilliseconds.Get()); + params.fcp_multiple = kFCPMultiple.Get(); return params; } -- cgit v1.2.1