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

Unified Diff: chrome/common/chrome_switches.h

Issue 1248823004: Phase 3: Implement New Task Manager Flag in about:flags. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: flag is available only when ENABLE_TASK_MANAGER=1 Created 5 years, 5 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/browser/about_flags.cc ('k') | chrome/common/chrome_switches.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/chrome_switches.h
diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h
index 1b4302a0f7ef389641b05e78f0c8fd4c729e0140..3be1f7dcb772543501ea96ba8a00ae47703c08b5 100644
--- a/chrome/common/chrome_switches.h
+++ b/chrome/common/chrome_switches.h
@@ -400,6 +400,10 @@ extern const char kDisablePluginPowerSaver[];
extern const char kEnablePluginPowerSaver[];
#endif
+#if defined(ENABLE_TASK_MANAGER)
+extern const char kEnableNewTaskManager[];
+#endif // defined(ENABLE_TASK_MANAGER)
+
bool AboutInSettingsEnabled();
bool MdDownloadsEnabled();
bool MdSettingsEnabled();
@@ -411,6 +415,10 @@ bool SettingsWindowEnabled();
bool PowerOverlayEnabled();
#endif
+#if defined(ENABLE_TASK_MANAGER)
+bool NewTaskManagerEnabled();
+#endif // defined(ENABLE_TASK_MANAGER)
+
// DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
// alphabetical order, or in one of the ifdefs (also in order in each section).
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/common/chrome_switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698