| Index: chrome/common/chrome_switches.cc
|
| diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
|
| index 42e97f572f5ee634be7c57cb35ae60c829fcdf93..4ddc228d1f92816ce157329e0b219dc619be9cef 100644
|
| --- a/chrome/common/chrome_switches.cc
|
| +++ b/chrome/common/chrome_switches.cc
|
| @@ -1268,11 +1268,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";
|
| @@ -1356,17 +1351,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.
|
| //
|
|
|