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 extern const char kDisableJavaScriptI18NAPI[]; | 56 extern const char kDisableJavaScriptI18NAPI[]; |
57 CONTENT_EXPORT extern const char kDisableLocalStorage[]; | 57 CONTENT_EXPORT extern const char kDisableLocalStorage[]; |
58 CONTENT_EXPORT extern const char kDisableLogging[]; | 58 CONTENT_EXPORT extern const char kDisableLogging[]; |
59 CONTENT_EXPORT extern const char kDisableSmoothScrolling[]; | 59 CONTENT_EXPORT extern const char kDisableSmoothScrolling[]; |
60 CONTENT_EXPORT extern const char kDisablePlugins[]; | 60 CONTENT_EXPORT extern const char kDisablePlugins[]; |
61 CONTENT_EXPORT extern const char kDisablePopupBlocking[]; | 61 CONTENT_EXPORT extern const char kDisablePopupBlocking[]; |
62 extern const char kDisableRemoteFonts[]; | 62 extern const char kDisableRemoteFonts[]; |
63 extern const char kDisableRendererAccessibility[]; | 63 extern const char kDisableRendererAccessibility[]; |
64 extern const char kDisableSSLFalseStart[]; | 64 extern const char kDisableSSLFalseStart[]; |
65 extern const char kDisableSeccompSandbox[]; | 65 extern const char kDisableSeccompSandbox[]; |
| 66 extern const char kDisableSeccompFilterSandbox[]; |
66 extern const char kDisableSessionStorage[]; | 67 extern const char kDisableSessionStorage[]; |
67 extern const char kDisableSharedWorkers[]; | 68 extern const char kDisableSharedWorkers[]; |
68 extern const char kDisableSiteSpecificQuirks[]; | 69 extern const char kDisableSiteSpecificQuirks[]; |
69 CONTENT_EXPORT extern const char kDisableSpeechInput[]; | 70 CONTENT_EXPORT extern const char kDisableSpeechInput[]; |
70 CONTENT_EXPORT extern const char kEnableScriptedSpeech[]; | 71 CONTENT_EXPORT extern const char kEnableScriptedSpeech[]; |
71 CONTENT_EXPORT extern const char kDisableThreadedAnimation[]; | 72 CONTENT_EXPORT extern const char kDisableThreadedAnimation[]; |
72 CONTENT_EXPORT extern const char kDisableWebAudio[]; | 73 CONTENT_EXPORT extern const char kDisableWebAudio[]; |
73 extern const char kDisableWebSecurity[]; | 74 extern const char kDisableWebSecurity[]; |
74 extern const char kDisableWebSockets[]; | 75 extern const char kDisableWebSockets[]; |
75 extern const char kDisableXSSAuditor[]; | 76 extern const char kDisableXSSAuditor[]; |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 | 208 |
208 #if defined(USE_AURA) | 209 #if defined(USE_AURA) |
209 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 210 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
210 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 211 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
211 CONTENT_EXPORT extern const char kTestCompositor[]; | 212 CONTENT_EXPORT extern const char kTestCompositor[]; |
212 #endif | 213 #endif |
213 | 214 |
214 } // namespace switches | 215 } // namespace switches |
215 | 216 |
216 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 217 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |