Skip to content

Commit

Permalink
Fix FirstContentfulPaint reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex313031 authored Mar 31, 2022
1 parent e2b6305 commit 8a6f1e9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions third_party/blink/common/features.cc
Original file line number Diff line number Diff line change
Expand Up @@ -241,10 +241,6 @@ const base::FeatureParam<int> kMaxSharedStorageCacheSize = {
&kSharedStorageAPI, "MaxSharedStorageCacheSize", 1024};
const base::FeatureParam<int> kMaxSharedStorageInitTries = {
&kSharedStorageAPI, "MaxSharedStorageInitTries", 2};
const base::FeatureParam<int>
kMaxSharedStorageConsecutiveOperationErrorsAllowed = {
&kSharedStorageAPI, "MaxSharedStorageConsecutiveOperationErrorsAllowed",
8};
const base::FeatureParam<base::TimeDelta>
kSharedStorageStaleOriginPurgeInitialInterval = {
&kSharedStorageAPI, "SharedStorageStaleOriginPurgeInitialInterval",
Expand Down Expand Up @@ -1375,6 +1371,9 @@ const base::Feature kEventPath{"EventPath", base::FEATURE_ENABLED_BY_DEFAULT};
const base::Feature kReduceUserAgentMinorVersion{
"ReduceUserAgentMinorVersion", base::FEATURE_DISABLED_BY_DEFAULT};

const base::Feature kReportFCPOnlyOnSuccessfulCommit{
"ReportFCPOnlyOnSuccessfulCommit", base::FEATURE_DISABLED_BY_DEFAULT};

// Enables correctly computing whether dedicated workers are secure contexts.
// TODO(https://crbug.com/780031): Remove this once fully shipped.
const base::Feature kSecureContextFixForWorkers{
Expand Down

0 comments on commit 8a6f1e9

Please sign in to comment.