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

Unified Diff: chrome/browser/about_flags.cc

Issue 809713006: Disable new bookmark apps flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix woopsies Created 5 years, 11 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/browser/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index b32c0921cfa9c595336646dc58d89e10bba5cea1..78473733b8ecacf79eb9eb8348d19ddb88ed3c2f 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -1514,11 +1514,11 @@ const Experiment kExperiments[] = {
},
#endif
{
- "disable-new-bookmark-apps",
- IDS_FLAGS_DISABLE_NEW_BOOKMARK_APPS_NAME,
- IDS_FLAGS_DISABLE_NEW_BOOKMARK_APPS_DESCRIPTION,
+ "enable-new-bookmark-apps",
+ IDS_FLAGS_ENABLE_NEW_BOOKMARK_APPS_NAME,
+ IDS_FLAGS_ENABLE_NEW_BOOKMARK_APPS_DESCRIPTION,
kOsWin | kOsCrOS | kOsLinux | kOsMac,
- SINGLE_VALUE_TYPE(switches::kDisableNewBookmarkApps)
+ SINGLE_VALUE_TYPE(switches::kEnableNewBookmarkApps)
},
#if defined(OS_MACOSX)
{

Powered by Google App Engine
This is Rietveld 408576698