| Index: chrome/common/chrome_switches.cc
|
| diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
|
| index 3c5d61fb4a0a4c8a359167d67ae89c6b5dfc4b01..95203b227b55df693e5f0aaddfb1e3301c0cc106 100644
|
| --- a/chrome/common/chrome_switches.cc
|
| +++ b/chrome/common/chrome_switches.cc
|
| @@ -1271,11 +1271,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";
|
| @@ -1359,17 +1354,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.
|
| //
|
|
|