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

Unified Diff: chrome/common/chrome_features.cc

Issue 2765083002: Hardcode extensions::util::IsNewBookmarkAppsEnabled() to true, except on Mac. (Closed)
Patch Set: remove logging Created 3 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
Index: chrome/common/chrome_features.cc
diff --git a/chrome/common/chrome_features.cc b/chrome/common/chrome_features.cc
index 5b0ceda3f8b4a3876502a7f790237e24162884b1..c31156658603f5f5feecd2fd5f6fca1e3a754653 100644
--- a/chrome/common/chrome_features.cc
+++ b/chrome/common/chrome_features.cc
@@ -65,6 +65,12 @@ const base::Feature kBackspaceGoesBackFeature {
const base::Feature kBlockPromptsIfDismissedOften{
"BlockPromptsIfDismissedOften", base::FEATURE_DISABLED_BY_DEFAULT};
+#if defined(OS_MACOSX)
+// Enables the new bookmark app system (e.g. Add To Applications on Mac).
+const base::Feature kBookmarkApps{"BookmarkAppsMac",
+ base::FEATURE_DISABLED_BY_DEFAULT};
+#endif
+
// Fixes for browser hang bugs are deployed in a field trial in order to measure
// their impact. See crbug.com/478209.
const base::Feature kBrowserHangFixesExperiment{

Powered by Google App Engine
This is Rietveld 408576698