Index: chrome/common/chrome_switches.cc |
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc |
index a285110d6de43b7cd82a83cc6c88e551ec36c294..720b3f56688b2da1d4a3dbe122f0cb2a6e16f5f6 100644 |
--- a/chrome/common/chrome_switches.cc |
+++ b/chrome/common/chrome_switches.cc |
@@ -1251,11 +1251,6 @@ const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
const char kDebugPrint[] = "debug-print"; |
#endif |
-#if defined(ENABLE_TASK_MANAGER) |
-// Disables the new implementation of the task manager. |
-const char kDisableNewTaskManager[] = "disable-new-task-manager"; |
-#endif // defined(ENABLE_TASK_MANAGER) |
- |
#if defined(ENABLE_WAYLAND_SERVER) |
// Enables Wayland display server support. |
const char kEnableWaylandServer[] = "enable-wayland-server"; |
@@ -1339,17 +1334,6 @@ bool PowerOverlayEnabled() { |
} |
#endif |
-#if defined(ENABLE_TASK_MANAGER) |
-bool NewTaskManagerEnabled() { |
-#if defined(OS_MACOSX) |
- return false; // The new task manager hasn't been adopted on Mac yet. |
-#else |
- return !base::CommandLine::ForCurrentProcess()->HasSwitch( |
- kDisableNewTaskManager); |
-#endif // defined(OS_MACOSX) |
-} |
-#endif // defined(ENABLE_TASK_MANAGER) |
- |
// ----------------------------------------------------------------------------- |
// DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
// |