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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 extern const char kDiagnosticsFormat[]; | 66 extern const char kDiagnosticsFormat[]; |
67 extern const char kDiagnosticsRecovery[]; | 67 extern const char kDiagnosticsRecovery[]; |
68 extern const char kDisableAsyncDns[]; | 68 extern const char kDisableAsyncDns[]; |
69 extern const char kDisableAuthNegotiateCnameLookup[]; | 69 extern const char kDisableAuthNegotiateCnameLookup[]; |
70 extern const char kDisableBackgroundNetworking[]; | 70 extern const char kDisableBackgroundNetworking[]; |
71 extern const char kDisableBundledPpapiFlash[]; | 71 extern const char kDisableBundledPpapiFlash[]; |
72 extern const char kDisableClientSidePhishingDetection[]; | 72 extern const char kDisableClientSidePhishingDetection[]; |
73 extern const char kDisableComponentExtensionsWithBackgroundPages[]; | 73 extern const char kDisableComponentExtensionsWithBackgroundPages[]; |
74 extern const char kDisableComponentUpdate[]; | 74 extern const char kDisableComponentUpdate[]; |
75 extern const char kDisableDefaultApps[]; | 75 extern const char kDisableDefaultApps[]; |
76 extern const char kDisableDeviceDiscovery[]; | |
77 extern const char kDisableDeviceDiscoveryNotifications[]; | 76 extern const char kDisableDeviceDiscoveryNotifications[]; |
78 extern const char kDisableDnsProbes[]; | 77 extern const char kDisableDnsProbes[]; |
79 extern const char kDisableDomainReliability[]; | 78 extern const char kDisableDomainReliability[]; |
80 extern const char kDisableExtensionsFileAccessCheck[]; | 79 extern const char kDisableExtensionsFileAccessCheck[]; |
81 extern const char kDisableExtensionsHttpThrottling[]; | 80 extern const char kDisableExtensionsHttpThrottling[]; |
82 extern const char kDisableExtensions[]; | 81 extern const char kDisableExtensions[]; |
83 extern const char kDisableIPv6[]; | 82 extern const char kDisableIPv6[]; |
84 extern const char kDisableMinimizeOnSecondLauncherItemClick[]; | 83 extern const char kDisableMinimizeOnSecondLauncherItemClick[]; |
85 extern const char kDisableMaterialDesignNTP[]; | 84 extern const char kDisableMaterialDesignNTP[]; |
86 extern const char kDisableNTPOtherSessionsMenu[]; | 85 extern const char kDisableNTPOtherSessionsMenu[]; |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 #endif | 399 #endif |
401 | 400 |
402 bool SettingsWindowEnabled(); | 401 bool SettingsWindowEnabled(); |
403 | 402 |
404 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 403 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
405 // alphabetical order, or in one of the ifdefs (also in order in each section). | 404 // alphabetical order, or in one of the ifdefs (also in order in each section). |
406 | 405 |
407 } // namespace switches | 406 } // namespace switches |
408 | 407 |
409 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 408 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |