Index: content/public/common/content_features.cc |
diff --git a/content/public/common/content_features.cc b/content/public/common/content_features.cc |
index 46489e24a87985e8ca851899ea8c8ead7bbd28fe..b20ac77d1c9830a93bf4803c46fd42c52e068396 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", |
@@ -107,6 +111,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", |