| 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 CONTENT_EXPORT extern const char kDisableHangMonitor[]; | 56 CONTENT_EXPORT extern const char kDisableHangMonitor[]; |
| 57 extern const char kDisableImageTransportSurface[]; | 57 extern const char kDisableImageTransportSurface[]; |
| 58 CONTENT_EXPORT extern const char kDisableInteractiveFormValidation[]; | 58 CONTENT_EXPORT extern const char kDisableInteractiveFormValidation[]; |
| 59 CONTENT_EXPORT extern const char kDisableJava[]; | 59 CONTENT_EXPORT extern const char kDisableJava[]; |
| 60 CONTENT_EXPORT extern const char kDisableJavaScript[]; | 60 CONTENT_EXPORT extern const char kDisableJavaScript[]; |
| 61 extern const char kDisableJavaScriptI18NAPI[]; | 61 extern const char kDisableJavaScriptI18NAPI[]; |
| 62 CONTENT_EXPORT extern const char kDisableLocalStorage[]; | 62 CONTENT_EXPORT extern const char kDisableLocalStorage[]; |
| 63 CONTENT_EXPORT extern const char kDisableLogging[]; | 63 CONTENT_EXPORT extern const char kDisableLogging[]; |
| 64 CONTENT_EXPORT extern const char kDisableSmoothScrolling[]; | 64 CONTENT_EXPORT extern const char kDisableSmoothScrolling[]; |
| 65 CONTENT_EXPORT extern const char kDisablePlugins[]; | 65 CONTENT_EXPORT extern const char kDisablePlugins[]; |
| 66 extern const char kDisablePointerLock[]; |
| 66 CONTENT_EXPORT extern const char kDisablePopupBlocking[]; | 67 CONTENT_EXPORT extern const char kDisablePopupBlocking[]; |
| 67 extern const char kDisableRemoteFonts[]; | 68 extern const char kDisableRemoteFonts[]; |
| 68 extern const char kDisableRendererAccessibility[]; | 69 extern const char kDisableRendererAccessibility[]; |
| 69 extern const char kDisableSSLFalseStart[]; | 70 extern const char kDisableSSLFalseStart[]; |
| 70 extern const char kDisableSeccompSandbox[]; | 71 extern const char kDisableSeccompSandbox[]; |
| 71 extern const char kDisableSeccompFilterSandbox[]; | 72 extern const char kDisableSeccompFilterSandbox[]; |
| 72 extern const char kDisableSessionStorage[]; | 73 extern const char kDisableSessionStorage[]; |
| 73 extern const char kDisableSharedWorkers[]; | 74 extern const char kDisableSharedWorkers[]; |
| 74 extern const char kDisableSiteSpecificQuirks[]; | 75 extern const char kDisableSiteSpecificQuirks[]; |
| 75 CONTENT_EXPORT extern const char kDisableSpeechInput[]; | 76 CONTENT_EXPORT extern const char kDisableSpeechInput[]; |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 | 215 |
| 215 #if defined(USE_AURA) | 216 #if defined(USE_AURA) |
| 216 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 217 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
| 217 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 218 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
| 218 CONTENT_EXPORT extern const char kTestCompositor[]; | 219 CONTENT_EXPORT extern const char kTestCompositor[]; |
| 219 #endif | 220 #endif |
| 220 | 221 |
| 221 } // namespace switches | 222 } // namespace switches |
| 222 | 223 |
| 223 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 224 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |