Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "content" command-line switches. | 5 // Defines all the "content" command-line switches. |
| 6 | 6 |
| 7 #ifndef CONTENT_COMMON_CONTENT_SWITCHES_H_ | 7 #ifndef CONTENT_COMMON_CONTENT_SWITCHES_H_ |
| 8 #define CONTENT_COMMON_CONTENT_SWITCHES_H_ | 8 #define CONTENT_COMMON_CONTENT_SWITCHES_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 43 extern const char kDisableSharedWorkers[]; | 43 extern const char kDisableSharedWorkers[]; |
| 44 extern const char kDisableSpeechInput[]; | 44 extern const char kDisableSpeechInput[]; |
| 45 extern const char kDisableWebSockets[]; | 45 extern const char kDisableWebSockets[]; |
| 46 extern const char kEnableAcceleratedDrawing[]; | 46 extern const char kEnableAcceleratedDrawing[]; |
| 47 extern const char kEnableAccessibility[]; | 47 extern const char kEnableAccessibility[]; |
| 48 extern const char kEnableBenchmarking[]; | 48 extern const char kEnableBenchmarking[]; |
| 49 extern const char kEnableDeviceMotion[]; | 49 extern const char kEnableDeviceMotion[]; |
| 50 extern const char kEnableGPUPlugin[]; | 50 extern const char kEnableGPUPlugin[]; |
| 51 extern const char kEnableLogging[]; | 51 extern const char kEnableLogging[]; |
| 52 extern const char kEnableMonitorProfile[]; | 52 extern const char kEnableMonitorProfile[]; |
| 53 #if defined(ENABLE_P2P_APIS) | |
|
brettw
2011/04/20 15:41:33
Please put ifdefed stuff at the bottom.
| |
| 53 extern const char kEnableP2PApi[]; | 54 extern const char kEnableP2PApi[]; |
| 55 #endif | |
| 54 extern const char kEnablePreparsedJsCaching[]; | 56 extern const char kEnablePreparsedJsCaching[]; |
| 55 extern const char kEnableSandboxLogging[]; | 57 extern const char kEnableSandboxLogging[]; |
| 56 extern const char kEnableSeccompSandbox[]; | 58 extern const char kEnableSeccompSandbox[]; |
| 57 extern const char kEnableStatsTable[]; | 59 extern const char kEnableStatsTable[]; |
| 58 extern const char kEnableVideoFullscreen[]; | 60 extern const char kEnableVideoFullscreen[]; |
| 59 extern const char kEnableVideoLogging[]; | 61 extern const char kEnableVideoLogging[]; |
| 60 extern const char kEnableWebAudio[]; | 62 extern const char kEnableWebAudio[]; |
| 61 extern const char kExperimentalLocationFeatures[]; | 63 extern const char kExperimentalLocationFeatures[]; |
| 62 // TODO(jam): this doesn't belong in content. | 64 // TODO(jam): this doesn't belong in content. |
| 63 extern const char kExtensionProcess[]; | 65 extern const char kExtensionProcess[]; |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 123 extern const char kZygoteCmdPrefix[]; | 125 extern const char kZygoteCmdPrefix[]; |
| 124 extern const char kZygoteProcess[]; | 126 extern const char kZygoteProcess[]; |
| 125 | 127 |
| 126 #if !defined(OFFICIAL_BUILD) | 128 #if !defined(OFFICIAL_BUILD) |
| 127 extern const char kRendererCheckFalseTest[]; | 129 extern const char kRendererCheckFalseTest[]; |
| 128 #endif | 130 #endif |
| 129 | 131 |
| 130 } // namespace switches | 132 } // namespace switches |
| 131 | 133 |
| 132 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ | 134 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |