Chromium Code Reviews| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 117 extern const char kDisableWebResources[]; | 117 extern const char kDisableWebResources[]; |
| 118 extern const char kDisableWebSecurity[]; | 118 extern const char kDisableWebSecurity[]; |
| 119 extern const char kDisableWebSockets[]; | 119 extern const char kDisableWebSockets[]; |
| 120 extern const char kDiskCacheDir[]; | 120 extern const char kDiskCacheDir[]; |
| 121 extern const char kDiskCacheSize[]; | 121 extern const char kDiskCacheSize[]; |
| 122 extern const char kDnsLogDetails[]; | 122 extern const char kDnsLogDetails[]; |
| 123 extern const char kDnsPrefetchDisable[]; | 123 extern const char kDnsPrefetchDisable[]; |
| 124 extern const char kDnsServer[]; | 124 extern const char kDnsServer[]; |
| 125 extern const char kDomAutomationController[]; | 125 extern const char kDomAutomationController[]; |
| 126 extern const char kDumpHistogramsOnExit[]; | 126 extern const char kDumpHistogramsOnExit[]; |
| 127 extern const char kEnableWebAudio[]; | |
|
darin (slow to review)
2011/01/19 23:32:43
nit: please insert this flag in alphabetical order
Chris Rogers
2011/01/20 00:08:27
Done.
| |
| 127 extern const char kEnableAccelerated2dCanvas[]; | 128 extern const char kEnableAccelerated2dCanvas[]; |
| 128 extern const char kEnableAcceleratedLayers[]; | 129 extern const char kEnableAcceleratedLayers[]; |
| 129 extern const char kEnableAcceleratedPlugins[]; | 130 extern const char kEnableAcceleratedPlugins[]; |
| 130 extern const char kEnableAccessibility[]; | 131 extern const char kEnableAccessibility[]; |
| 131 extern const char kEnableAeroPeekTabs[]; | 132 extern const char kEnableAeroPeekTabs[]; |
| 132 extern const char kEnableAuthNegotiatePort[]; | 133 extern const char kEnableAuthNegotiatePort[]; |
| 133 extern const char kEnableBenchmarking[]; | 134 extern const char kEnableBenchmarking[]; |
| 134 extern const char kEnableClientSidePhishingDetection[]; | 135 extern const char kEnableClientSidePhishingDetection[]; |
| 135 extern const char kEnableClearServerData[]; | 136 extern const char kEnableClearServerData[]; |
| 136 extern const char kEnableClickToPlay[]; | 137 extern const char kEnableClickToPlay[]; |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 411 | 412 |
| 412 // Return true if the switches indicate the seccomp sandbox is enabled. | 413 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 413 bool SeccompSandboxEnabled(); | 414 bool SeccompSandboxEnabled(); |
| 414 | 415 |
| 415 // 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 |
| 416 // 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). |
| 417 | 418 |
| 418 } // namespace switches | 419 } // namespace switches |
| 419 | 420 |
| 420 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 421 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |