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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 extern const char kDiagnostics[]; | 60 extern const char kDiagnostics[]; |
61 extern const char kDiagnosticsFormat[]; | 61 extern const char kDiagnosticsFormat[]; |
62 extern const char kDiagnosticsRecovery[]; | 62 extern const char kDiagnosticsRecovery[]; |
63 extern const char kDisableAboutInSettings[]; | 63 extern const char kDisableAboutInSettings[]; |
64 extern const char kDisableAddToShelf[]; | 64 extern const char kDisableAddToShelf[]; |
65 extern const char kDisableAsyncDns[]; | 65 extern const char kDisableAsyncDns[]; |
66 extern const char kDisableBackgroundNetworking[]; | 66 extern const char kDisableBackgroundNetworking[]; |
67 extern const char kDisableBundledPpapiFlash[]; | 67 extern const char kDisableBundledPpapiFlash[]; |
68 extern const char kDisableCastStreamingHWEncoding[]; | 68 extern const char kDisableCastStreamingHWEncoding[]; |
69 extern const char kDisableChildAccountDetection[]; | 69 extern const char kDisableChildAccountDetection[]; |
| 70 extern const char kDisableClearBrowsingDataCounters[]; |
70 extern const char kDisableClientSidePhishingDetection[]; | 71 extern const char kDisableClientSidePhishingDetection[]; |
71 extern const char kDisableComponentExtensionsWithBackgroundPages[]; | 72 extern const char kDisableComponentExtensionsWithBackgroundPages[]; |
72 extern const char kDisableComponentUpdate[]; | 73 extern const char kDisableComponentUpdate[]; |
73 extern const char kDisableDefaultApps[]; | 74 extern const char kDisableDefaultApps[]; |
74 extern const char kDisableDeviceDiscoveryNotifications[]; | 75 extern const char kDisableDeviceDiscoveryNotifications[]; |
75 extern const char kDisableDinosaurEasterEgg[]; | 76 extern const char kDisableDinosaurEasterEgg[]; |
76 extern const char kDisableDomainReliability[]; | 77 extern const char kDisableDomainReliability[]; |
77 extern const char kDisableExtensionsFileAccessCheck[]; | 78 extern const char kDisableExtensionsFileAccessCheck[]; |
78 extern const char kDisableExtensionsHttpThrottling[]; | 79 extern const char kDisableExtensionsHttpThrottling[]; |
79 extern const char kDisableExtensions[]; | 80 extern const char kDisableExtensions[]; |
(...skipping 332 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 |