OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 extern const char kEnableGPUPlugin[]; | 133 extern const char kEnableGPUPlugin[]; |
134 extern const char kEnableGPURendering[]; | 134 extern const char kEnableGPURendering[]; |
135 extern const char kEnableIPv6[]; | 135 extern const char kEnableIPv6[]; |
136 extern const char kEnableLogging[]; | 136 extern const char kEnableLogging[]; |
137 extern const char kEnableMatchPreview[]; | 137 extern const char kEnableMatchPreview[]; |
138 extern const char kEnableMemoryInfo[]; | 138 extern const char kEnableMemoryInfo[]; |
139 extern const char kEnableMonitorProfile[]; | 139 extern const char kEnableMonitorProfile[]; |
140 extern const char kEnableNaCl[]; | 140 extern const char kEnableNaCl[]; |
141 extern const char kEnableNaClDebug[]; | 141 extern const char kEnableNaClDebug[]; |
142 extern const char kEnableNativeWebWorkers[]; | 142 extern const char kEnableNativeWebWorkers[]; |
| 143 extern const char kEnableNewAutofillDataType[]; |
143 extern const char kEnablePreconnect[]; | 144 extern const char kEnablePreconnect[]; |
144 extern const char kEnablePreparsedJsCaching[]; | 145 extern const char kEnablePreparsedJsCaching[]; |
145 extern const char kEnablePrintPreview[]; | 146 extern const char kEnablePrintPreview[]; |
146 extern const char kEnableRemoting[]; | 147 extern const char kEnableRemoting[]; |
147 extern const char kEnableResourceContentSettings[]; | 148 extern const char kEnableResourceContentSettings[]; |
148 extern const char kEnableSearchProviderApiV2[]; | 149 extern const char kEnableSearchProviderApiV2[]; |
149 extern const char kEnableSecureInfoBars[]; | 150 extern const char kEnableSecureInfoBars[]; |
150 extern const char kEnableSnapStart[]; | 151 extern const char kEnableSnapStart[]; |
151 extern const char kEnableStatsTable[]; | 152 extern const char kEnableStatsTable[]; |
152 extern const char kEnableSync[]; | 153 extern const char kEnableSync[]; |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 #endif | 375 #endif |
375 // Return true if the switches indicate the seccomp sandbox is enabled. | 376 // Return true if the switches indicate the seccomp sandbox is enabled. |
376 bool SeccompSandboxEnabled(); | 377 bool SeccompSandboxEnabled(); |
377 | 378 |
378 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 379 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
379 // alphabetical order, or in one of the ifdefs (also in order in each section). | 380 // alphabetical order, or in one of the ifdefs (also in order in each section). |
380 | 381 |
381 } // namespace switches | 382 } // namespace switches |
382 | 383 |
383 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 384 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |