| 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 all the command-line switches used by Chrome. | 5 // Defines all the command-line switches used by Chrome. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
| 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 | 397 |
| 398 #if defined(ENABLE_PLUGINS) | 398 #if defined(ENABLE_PLUGINS) |
| 399 extern const char kAllowNaClCrxFsAPI[]; | 399 extern const char kAllowNaClCrxFsAPI[]; |
| 400 extern const char kAllowNaClFileHandleAPI[]; | 400 extern const char kAllowNaClFileHandleAPI[]; |
| 401 extern const char kAllowNaClSocketAPI[]; | 401 extern const char kAllowNaClSocketAPI[]; |
| 402 extern const char kDisablePluginPowerSaver[]; | 402 extern const char kDisablePluginPowerSaver[]; |
| 403 extern const char kEnablePluginPowerSaver[]; | 403 extern const char kEnablePluginPowerSaver[]; |
| 404 #endif | 404 #endif |
| 405 | 405 |
| 406 #if defined(ENABLE_TASK_MANAGER) | 406 #if defined(ENABLE_TASK_MANAGER) |
| 407 extern const char kEnableNewTaskManager[]; | 407 extern const char kDisableNewTaskManager[]; |
| 408 #endif // defined(ENABLE_TASK_MANAGER) | 408 #endif // defined(ENABLE_TASK_MANAGER) |
| 409 | 409 |
| 410 bool AboutInSettingsEnabled(); | 410 bool AboutInSettingsEnabled(); |
| 411 bool MdDownloadsEnabled(); | 411 bool MdDownloadsEnabled(); |
| 412 bool MdSettingsEnabled(); | 412 bool MdSettingsEnabled(); |
| 413 bool MediaRouterEnabled(); | 413 bool MediaRouterEnabled(); |
| 414 bool PdfMaterialUIEnabled(); | 414 bool PdfMaterialUIEnabled(); |
| 415 bool SettingsWindowEnabled(); | 415 bool SettingsWindowEnabled(); |
| 416 | 416 |
| 417 #if defined(OS_CHROMEOS) | 417 #if defined(OS_CHROMEOS) |
| 418 bool PowerOverlayEnabled(); | 418 bool PowerOverlayEnabled(); |
| 419 #endif | 419 #endif |
| 420 | 420 |
| 421 #if defined(ENABLE_TASK_MANAGER) | 421 #if defined(ENABLE_TASK_MANAGER) |
| 422 bool NewTaskManagerEnabled(); | 422 bool NewTaskManagerEnabled(); |
| 423 #endif // defined(ENABLE_TASK_MANAGER) | 423 #endif // defined(ENABLE_TASK_MANAGER) |
| 424 | 424 |
| 425 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 425 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 426 // alphabetical order, or in one of the ifdefs (also in order in each section). | 426 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 427 | 427 |
| 428 } // namespace switches | 428 } // namespace switches |
| 429 | 429 |
| 430 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 430 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |