| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 extern const char kDisableMaterialDesignDownloads[]; | 83 extern const char kDisableMaterialDesignDownloads[]; |
| 84 extern const char kDisableMinimizeOnSecondLauncherItemClick[]; | 84 extern const char kDisableMinimizeOnSecondLauncherItemClick[]; |
| 85 extern const char kDisableNewBookmarkApps[]; | 85 extern const char kDisableNewBookmarkApps[]; |
| 86 extern const char kDisableNTPPopularSites[]; | 86 extern const char kDisableNTPPopularSites[]; |
| 87 extern const char kDisableOfflineAutoReload[]; | 87 extern const char kDisableOfflineAutoReload[]; |
| 88 extern const char kDisableOfflineAutoReloadVisibleOnly[]; | 88 extern const char kDisableOfflineAutoReloadVisibleOnly[]; |
| 89 extern const char kDisableOutOfProcessPac[]; | 89 extern const char kDisableOutOfProcessPac[]; |
| 90 extern const char kDisablePasswordManagerReauthentication[]; | 90 extern const char kDisablePasswordManagerReauthentication[]; |
| 91 extern const char kDisablePdfMaterialUI[]; | 91 extern const char kDisablePdfMaterialUI[]; |
| 92 extern const char kDisablePermissionsBlacklist[]; | 92 extern const char kDisablePermissionsBlacklist[]; |
| 93 extern const char kDisablePersistentMetrics[]; |
| 93 extern const char kDisablePopupBlocking[]; | 94 extern const char kDisablePopupBlocking[]; |
| 94 extern const char kDisablePreconnect[]; | 95 extern const char kDisablePreconnect[]; |
| 95 extern const char kDisablePrintPreview[]; | 96 extern const char kDisablePrintPreview[]; |
| 96 extern const char kDisablePromptOnRepost[]; | 97 extern const char kDisablePromptOnRepost[]; |
| 97 extern const char kDisablePushApiBackgroundMode[]; | 98 extern const char kDisablePushApiBackgroundMode[]; |
| 98 extern const char kDisableQuic[]; | 99 extern const char kDisableQuic[]; |
| 99 extern const char kDisableQuicPortSelection[]; | 100 extern const char kDisableQuicPortSelection[]; |
| 100 extern const char kDisableSessionCrashedBubble[]; | 101 extern const char kDisableSessionCrashedBubble[]; |
| 101 extern const char kDisableSiteEngagementService[]; | 102 extern const char kDisableSiteEngagementService[]; |
| 102 extern const char kDisableWebNotificationCustomLayouts[]; | 103 extern const char kDisableWebNotificationCustomLayouts[]; |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 #if defined(ENABLE_TASK_MANAGER) | 418 #if defined(ENABLE_TASK_MANAGER) |
| 418 bool NewTaskManagerEnabled(); | 419 bool NewTaskManagerEnabled(); |
| 419 #endif // defined(ENABLE_TASK_MANAGER) | 420 #endif // defined(ENABLE_TASK_MANAGER) |
| 420 | 421 |
| 421 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 422 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 422 // alphabetical order, or in one of the ifdefs (also in order in each section). | 423 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 423 | 424 |
| 424 } // namespace switches | 425 } // namespace switches |
| 425 | 426 |
| 426 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 427 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |