| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Defines the shared command-line switches used by code in the Chrome | 5 // Defines the shared command-line switches used by code in the Chrome |
| 6 // directory that don't have anywhere more specific to go. | 6 // directory that don't have anywhere more specific to go. |
| 7 | 7 |
| 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
| 9 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 9 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
| 10 | 10 |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 extern const char kEnablePluginPowerSaver[]; | 397 extern const char kEnablePluginPowerSaver[]; |
| 398 #endif | 398 #endif |
| 399 | 399 |
| 400 #if defined(ENABLE_TASK_MANAGER) | 400 #if defined(ENABLE_TASK_MANAGER) |
| 401 extern const char kDisableNewTaskManager[]; | 401 extern const char kDisableNewTaskManager[]; |
| 402 #endif // defined(ENABLE_TASK_MANAGER) | 402 #endif // defined(ENABLE_TASK_MANAGER) |
| 403 | 403 |
| 404 bool AboutInSettingsEnabled(); | 404 bool AboutInSettingsEnabled(); |
| 405 bool MdExtensionsEnabled(); | 405 bool MdExtensionsEnabled(); |
| 406 bool MdPolicyPageEnabled(); | 406 bool MdPolicyPageEnabled(); |
| 407 bool MediaRouterEnabled(); | |
| 408 bool PdfMaterialUIEnabled(); | 407 bool PdfMaterialUIEnabled(); |
| 409 bool SettingsWindowEnabled(); | 408 bool SettingsWindowEnabled(); |
| 410 | 409 |
| 411 #if defined(OS_CHROMEOS) | 410 #if defined(OS_CHROMEOS) |
| 412 bool PowerOverlayEnabled(); | 411 bool PowerOverlayEnabled(); |
| 413 #endif | 412 #endif |
| 414 | 413 |
| 415 #if defined(ENABLE_TASK_MANAGER) | 414 #if defined(ENABLE_TASK_MANAGER) |
| 416 bool NewTaskManagerEnabled(); | 415 bool NewTaskManagerEnabled(); |
| 417 #endif // defined(ENABLE_TASK_MANAGER) | 416 #endif // defined(ENABLE_TASK_MANAGER) |
| 418 | 417 |
| 419 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 418 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 420 // alphabetical order, or in one of the ifdefs (also in order in each section). | 419 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 421 | 420 |
| 422 } // namespace switches | 421 } // namespace switches |
| 423 | 422 |
| 424 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 423 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |