| Index: content/public/common/content_features.cc
|
| diff --git a/content/public/common/content_features.cc b/content/public/common/content_features.cc
|
| index 968b2a7c64be7f57441ddf27ba79c110c9e9d360..696ced9e8c541027f03195d6ebcce90f88446eed 100644
|
| --- a/content/public/common/content_features.cc
|
| +++ b/content/public/common/content_features.cc
|
| @@ -24,6 +24,10 @@ const base::Feature kCredentialManagementAPI{"CredentialManagementAPI",
|
| const base::Feature kDefaultEnableGpuRasterization{
|
| "DefaultEnableGpuRasterization", base::FEATURE_DISABLED_BY_DEFAULT};
|
|
|
| +// Do not call SharedBuffer::unlock() (https://crbug.com/603791).
|
| +const base::Feature kDoNotUnlockSharedBuffer{"DoNotUnlockSharedBuffer",
|
| + base::FEATURE_DISABLED_BY_DEFAULT};
|
| +
|
| // Downloads resumption will be controllable via a flag until it's enabled
|
| // permanently. See https://crbug.com/7648
|
| const base::Feature kDownloadResumption{"DownloadResumption",
|
| @@ -103,6 +107,10 @@ const base::Feature kStaleWhileRevalidate{"StaleWhileRevalidate2",
|
| const base::Feature kTokenBinding{"token-binding",
|
| base::FEATURE_DISABLED_BY_DEFAULT};
|
|
|
| +// Weak MemoryCache (https://crbug.com/603462).
|
| +const base::Feature kWeakMemoryCache{"WeakMemoryCache",
|
| + base::FEATURE_DISABLED_BY_DEFAULT};
|
| +
|
| // Makes WebRTC use ECDSA certs by default (i.e., when no cert type was
|
| // specified in JS).
|
| const base::Feature kWebRtcEcdsaDefault {"WebRTC-EnableWebRtcEcdsa",
|
|
|