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