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

Unified Diff: chrome/browser/about_flags.cc

Issue 220373003: Prevent Chrome from quitting when apps are open. (Mac) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 6 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/browser/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index 67eacca32f3844a164081331849c16869cc3a898..62ad5e14c0ed74e499079f5881fac91315d2c922 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -1847,6 +1847,15 @@ const Experiment kExperiments[] = {
IDS_FLAGS_ENABLE_EASY_UNLOCK_DESCRIPTION,
kOsCrOS,
SINGLE_VALUE_TYPE(switches::kEnableEasyUnlock)
+ },
+#endif
+#if defined(OS_MACOSX)
+ {
+ "apps-keep-chrome-alive",
+ IDS_FLAGS_APPS_KEEP_CHROME_ALIVE_NAME,
+ IDS_FLAGS_APPS_KEEP_CHROME_ALIVE_DESCRIPTION,
+ kOsMac,
+ SINGLE_VALUE_TYPE(switches::kAppsKeepChromeAlive)
}
#endif
};

Powered by Google App Engine
This is Rietveld 408576698