| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 extern const char kEnableExtensionToolstrips[]; | 115 extern const char kEnableExtensionToolstrips[]; |
| 116 extern const char kEnableFastback[]; | 116 extern const char kEnableFastback[]; |
| 117 extern const char kEnableFileCookies[]; | 117 extern const char kEnableFileCookies[]; |
| 118 extern const char kEnableGLSLTranslator[]; | 118 extern const char kEnableGLSLTranslator[]; |
| 119 extern const char kEnableGPUPlugin[]; | 119 extern const char kEnableGPUPlugin[]; |
| 120 extern const char kEnableGPURendering[]; | 120 extern const char kEnableGPURendering[]; |
| 121 extern const char kEnableIndexedDatabase[]; | 121 extern const char kEnableIndexedDatabase[]; |
| 122 extern const char kEnableInMemoryURLIndex[]; | 122 extern const char kEnableInMemoryURLIndex[]; |
| 123 extern const char kEnableIPv6[]; | 123 extern const char kEnableIPv6[]; |
| 124 extern const char kEnableLogging[]; | 124 extern const char kEnableLogging[]; |
| 125 extern const char kEnableMatchPreview[]; |
| 125 extern const char kEnableMemoryInfo[]; | 126 extern const char kEnableMemoryInfo[]; |
| 126 extern const char kEnableMonitorProfile[]; | 127 extern const char kEnableMonitorProfile[]; |
| 127 extern const char kEnableNaCl[]; | 128 extern const char kEnableNaCl[]; |
| 128 extern const char kEnableNativeWebWorkers[]; | 129 extern const char kEnableNativeWebWorkers[]; |
| 129 extern const char kEnablePreconnect[]; | 130 extern const char kEnablePreconnect[]; |
| 130 extern const char kEnablePreparsedJsCaching[]; | 131 extern const char kEnablePreparsedJsCaching[]; |
| 131 extern const char kEnablePrintPreview[]; | 132 extern const char kEnablePrintPreview[]; |
| 132 extern const char kEnableSearchProviderApiV2[]; | 133 extern const char kEnableSearchProviderApiV2[]; |
| 133 extern const char kEnableSpeechInput[]; | 134 extern const char kEnableSpeechInput[]; |
| 134 extern const char kEnableStatsTable[]; | 135 extern const char kEnableStatsTable[]; |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 #endif | 356 #endif |
| 356 // Return true if the switches indicate the seccomp sandbox is enabled. | 357 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 357 bool SeccompSandboxEnabled(); | 358 bool SeccompSandboxEnabled(); |
| 358 | 359 |
| 359 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 360 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 360 // alphabetical order, or in one of the ifdefs (also in order in each section). | 361 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 361 | 362 |
| 362 } // namespace switches | 363 } // namespace switches |
| 363 | 364 |
| 364 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 365 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |