| 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 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 #endif | 390 #endif |
| 391 | 391 |
| 392 #if defined(ENABLE_TASK_MANAGER) | 392 #if defined(ENABLE_TASK_MANAGER) |
| 393 extern const char kDisableNewTaskManager[]; | 393 extern const char kDisableNewTaskManager[]; |
| 394 #endif // defined(ENABLE_TASK_MANAGER) | 394 #endif // defined(ENABLE_TASK_MANAGER) |
| 395 | 395 |
| 396 #if defined(ENABLE_WAYLAND_SERVER) | 396 #if defined(ENABLE_WAYLAND_SERVER) |
| 397 extern const char kEnableWaylandServer[]; | 397 extern const char kEnableWaylandServer[]; |
| 398 #endif | 398 #endif |
| 399 | 399 |
| 400 extern const char kEnableBrotli[]; |
| 401 extern const char kDisableBrotli[]; |
| 402 |
| 400 bool AboutInSettingsEnabled(); | 403 bool AboutInSettingsEnabled(); |
| 401 bool MdExtensionsEnabled(); | 404 bool MdExtensionsEnabled(); |
| 402 bool MdHistoryEnabled(); | 405 bool MdHistoryEnabled(); |
| 403 bool MdPolicyPageEnabled(); | 406 bool MdPolicyPageEnabled(); |
| 404 bool PdfMaterialUIEnabled(); | 407 bool PdfMaterialUIEnabled(); |
| 405 bool SettingsWindowEnabled(); | 408 bool SettingsWindowEnabled(); |
| 406 | 409 |
| 407 #if defined(OS_CHROMEOS) | 410 #if defined(OS_CHROMEOS) |
| 408 bool PowerOverlayEnabled(); | 411 bool PowerOverlayEnabled(); |
| 409 #endif | 412 #endif |
| 410 | 413 |
| 411 #if defined(ENABLE_TASK_MANAGER) | 414 #if defined(ENABLE_TASK_MANAGER) |
| 412 bool NewTaskManagerEnabled(); | 415 bool NewTaskManagerEnabled(); |
| 413 #endif // defined(ENABLE_TASK_MANAGER) | 416 #endif // defined(ENABLE_TASK_MANAGER) |
| 414 | 417 |
| 415 // 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 |
| 416 // 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). |
| 417 | 420 |
| 418 } // namespace switches | 421 } // namespace switches |
| 419 | 422 |
| 420 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 423 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |