| 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 "content" command-line switches. | 5 // Defines all the "content" command-line switches. |
| 6 | 6 |
| 7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| 8 #define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 8 #define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 CONTENT_EXPORT extern const char kV8SnapshotPassedByFD[]; | 260 CONTENT_EXPORT extern const char kV8SnapshotPassedByFD[]; |
| 261 CONTENT_EXPORT extern const char kV8CacheStrategiesForCacheStorage[]; | 261 CONTENT_EXPORT extern const char kV8CacheStrategiesForCacheStorage[]; |
| 262 CONTENT_EXPORT extern const char kValidateInputEventStream[]; | 262 CONTENT_EXPORT extern const char kValidateInputEventStream[]; |
| 263 CONTENT_EXPORT extern const char kWaitForDebuggerChildren[]; | 263 CONTENT_EXPORT extern const char kWaitForDebuggerChildren[]; |
| 264 CONTENT_EXPORT extern const char kZygoteCmdPrefix[]; | 264 CONTENT_EXPORT extern const char kZygoteCmdPrefix[]; |
| 265 CONTENT_EXPORT extern const char kZygoteProcess[]; | 265 CONTENT_EXPORT extern const char kZygoteProcess[]; |
| 266 | 266 |
| 267 #if BUILDFLAG(ENABLE_WEBRTC) | 267 #if BUILDFLAG(ENABLE_WEBRTC) |
| 268 CONTENT_EXPORT extern const char kDisableWebRtcHWDecoding[]; | 268 CONTENT_EXPORT extern const char kDisableWebRtcHWDecoding[]; |
| 269 CONTENT_EXPORT extern const char kDisableWebRtcEncryption[]; | 269 CONTENT_EXPORT extern const char kDisableWebRtcEncryption[]; |
| 270 CONTENT_EXPORT extern const char kDisableWebRtcHWEncoding[]; |
| 270 CONTENT_EXPORT extern const char kDisableWebRtcHWVP8Encoding[]; | 271 CONTENT_EXPORT extern const char kDisableWebRtcHWVP8Encoding[]; |
| 271 CONTENT_EXPORT extern const char kEnableWebRtcStunOrigin[]; | 272 CONTENT_EXPORT extern const char kEnableWebRtcStunOrigin[]; |
| 272 CONTENT_EXPORT extern const char kEnforceWebRtcIPPermissionCheck[]; | 273 CONTENT_EXPORT extern const char kEnforceWebRtcIPPermissionCheck[]; |
| 273 CONTENT_EXPORT extern const char kForceWebRtcIPHandlingPolicy[]; | 274 CONTENT_EXPORT extern const char kForceWebRtcIPHandlingPolicy[]; |
| 274 CONTENT_EXPORT extern const char kWebRtcStunProbeTrialParameter[]; | 275 CONTENT_EXPORT extern const char kWebRtcStunProbeTrialParameter[]; |
| 275 extern const char kWebRtcMaxCaptureFramerate[]; | 276 extern const char kWebRtcMaxCaptureFramerate[]; |
| 276 #endif | 277 #endif |
| 277 | 278 |
| 278 #if defined(OS_ANDROID) | 279 #if defined(OS_ANDROID) |
| 279 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[]; | 280 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[]; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 extern const char kIpcDumpDirectory[]; | 325 extern const char kIpcDumpDirectory[]; |
| 325 extern const char kIpcFuzzerTestcase[]; | 326 extern const char kIpcFuzzerTestcase[]; |
| 326 #endif | 327 #endif |
| 327 | 328 |
| 328 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 329 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 329 // alphabetical order, or in one of the ifdefs (also in order in each section). | 330 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 330 | 331 |
| 331 } // namespace switches | 332 } // namespace switches |
| 332 | 333 |
| 333 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 334 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |