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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 extern const char kDisableComponentExtensionsWithBackgroundPages[]; | 78 extern const char kDisableComponentExtensionsWithBackgroundPages[]; |
79 extern const char kDisableComponentUpdate[]; | 79 extern const char kDisableComponentUpdate[]; |
80 extern const char kDisableDefaultApps[]; | 80 extern const char kDisableDefaultApps[]; |
81 extern const char kDisableDeviceDiscovery[]; | 81 extern const char kDisableDeviceDiscovery[]; |
82 extern const char kDisableDeviceDiscoveryNotifications[]; | 82 extern const char kDisableDeviceDiscoveryNotifications[]; |
83 extern const char kDisableDnsProbes[]; | 83 extern const char kDisableDnsProbes[]; |
84 extern const char kDisableDomainReliability[]; | 84 extern const char kDisableDomainReliability[]; |
85 extern const char kDisableExtensionsFileAccessCheck[]; | 85 extern const char kDisableExtensionsFileAccessCheck[]; |
86 extern const char kDisableExtensionsHttpThrottling[]; | 86 extern const char kDisableExtensionsHttpThrottling[]; |
87 extern const char kDisableExtensions[]; | 87 extern const char kDisableExtensions[]; |
88 extern const char kDisableFullscreenWithinTab[]; | |
89 extern const char kDisableIPv6[]; | 88 extern const char kDisableIPv6[]; |
90 extern const char kDisableMinimizeOnSecondLauncherItemClick[]; | 89 extern const char kDisableMinimizeOnSecondLauncherItemClick[]; |
91 extern const char kDisableNTPOtherSessionsMenu[]; | 90 extern const char kDisableNTPOtherSessionsMenu[]; |
92 extern const char kDisableOfflineAutoReload[]; | 91 extern const char kDisableOfflineAutoReload[]; |
93 extern const char kDisableOfflineAutoReloadVisibleOnly[]; | 92 extern const char kDisableOfflineAutoReloadVisibleOnly[]; |
94 extern const char kDisableOriginChip[]; | 93 extern const char kDisableOriginChip[]; |
95 extern const char kDisablePasswordManagerReauthentication[]; | 94 extern const char kDisablePasswordManagerReauthentication[]; |
96 extern const char kDisablePeopleSearch[]; | 95 extern const char kDisablePeopleSearch[]; |
97 extern const char kDisablePermissionsBubbles[]; | 96 extern const char kDisablePermissionsBubbles[]; |
98 extern const char kDisablePnacl[]; | 97 extern const char kDisablePnacl[]; |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
413 #endif | 412 #endif |
414 | 413 |
415 bool SettingsWindowEnabled(); | 414 bool SettingsWindowEnabled(); |
416 | 415 |
417 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 416 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
418 // alphabetical order, or in one of the ifdefs (also in order in each section). | 417 // alphabetical order, or in one of the ifdefs (also in order in each section). |
419 | 418 |
420 } // namespace switches | 419 } // namespace switches |
421 | 420 |
422 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 421 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |