Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Unified Diff: chrome/common/chrome_features.cc

Issue 1671063002: Enable deferred free for syzyasan builds behind a feature. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/chrome_features.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/chrome_features.cc
diff --git a/chrome/common/chrome_features.cc b/chrome/common/chrome_features.cc
index a7643b349ff316fe7b55bfac6309d4c55f813212..e1c558bcde2c91b16cc46409eb3732333673bb01 100644
--- a/chrome/common/chrome_features.cc
+++ b/chrome/common/chrome_features.cc
@@ -48,4 +48,12 @@ const base::Feature kSimplifiedFullscreenUI{
#endif
};
+#if defined(SYZYASAN)
+// Enable the deferred free mechanism in the syzyasan module, which helps the
+// performance by deferring some work on the critical path to a background
+// thread.
+const base::Feature kSyzyasanDeferredFree{"SyzyasanDeferredFree",
+ base::FEATURE_DISABLED_BY_DEFAULT};
+#endif
+
} // namespace features
« no previous file with comments | « chrome/common/chrome_features.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698