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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 CONTENT_EXPORT extern const char kDisableGpuProcessPrelaunch[]; | 75 CONTENT_EXPORT extern const char kDisableGpuProcessPrelaunch[]; |
76 extern const char kDisableGpuSandbox[]; | 76 extern const char kDisableGpuSandbox[]; |
77 extern const char kDisableGpuWatchdog[]; | 77 extern const char kDisableGpuWatchdog[]; |
78 CONTENT_EXPORT extern const char kDisableHangMonitor[]; | 78 CONTENT_EXPORT extern const char kDisableHangMonitor[]; |
79 extern const char kDisableHistogramCustomizer[]; | 79 extern const char kDisableHistogramCustomizer[]; |
80 CONTENT_EXPORT extern const char kDisableHTMLNotifications[]; | 80 CONTENT_EXPORT extern const char kDisableHTMLNotifications[]; |
81 extern const char kDisableImageTransportSurface[]; | 81 extern const char kDisableImageTransportSurface[]; |
82 CONTENT_EXPORT extern const char kDisableJava[]; | 82 CONTENT_EXPORT extern const char kDisableJava[]; |
83 CONTENT_EXPORT extern const char kDisableJavaScript[]; | 83 CONTENT_EXPORT extern const char kDisableJavaScript[]; |
84 extern const char kDisablePrefixedEncryptedMedia[]; | 84 extern const char kDisablePrefixedEncryptedMedia[]; |
| 85 extern const char kDisableKillAfterBadIPC[]; |
85 CONTENT_EXPORT extern const char kDisableLocalStorage[]; | 86 CONTENT_EXPORT extern const char kDisableLocalStorage[]; |
86 CONTENT_EXPORT extern const char kDisableLogging[]; | 87 CONTENT_EXPORT extern const char kDisableLogging[]; |
87 extern const char kDisablePepper3d[]; | 88 extern const char kDisablePepper3d[]; |
88 extern const char kDisablePinch[]; | 89 extern const char kDisablePinch[]; |
89 CONTENT_EXPORT extern const char kDisablePlugins[]; | 90 CONTENT_EXPORT extern const char kDisablePlugins[]; |
90 CONTENT_EXPORT extern const char kDisablePluginsDiscovery[]; | 91 CONTENT_EXPORT extern const char kDisablePluginsDiscovery[]; |
91 extern const char kDisableRemoteFonts[]; | 92 extern const char kDisableRemoteFonts[]; |
92 extern const char kDisableRendererAccessibility[]; | 93 extern const char kDisableRendererAccessibility[]; |
93 extern const char kDisableSeccompFilterSandbox[]; | 94 extern const char kDisableSeccompFilterSandbox[]; |
94 extern const char kDisableSessionStorage[]; | 95 extern const char kDisableSessionStorage[]; |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 #if defined(OS_POSIX) | 304 #if defined(OS_POSIX) |
304 extern const char kChildCleanExit[]; | 305 extern const char kChildCleanExit[]; |
305 #endif | 306 #endif |
306 | 307 |
307 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 308 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
308 // alphabetical order, or in one of the ifdefs (also in order in each section). | 309 // alphabetical order, or in one of the ifdefs (also in order in each section). |
309 | 310 |
310 } // namespace switches | 311 } // namespace switches |
311 | 312 |
312 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 313 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |