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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 CONTENT_EXPORT extern const char kDisableGpuCompositing[]; | 65 CONTENT_EXPORT extern const char kDisableGpuCompositing[]; |
66 CONTENT_EXPORT extern const char kDisableGpuProcessPrelaunch[]; | 66 CONTENT_EXPORT extern const char kDisableGpuProcessPrelaunch[]; |
67 extern const char kDisableGpuSandbox[]; | 67 extern const char kDisableGpuSandbox[]; |
68 extern const char kDisableGpuWatchdog[]; | 68 extern const char kDisableGpuWatchdog[]; |
69 CONTENT_EXPORT extern const char kDisableHangMonitor[]; | 69 CONTENT_EXPORT extern const char kDisableHangMonitor[]; |
70 extern const char kDisableHistogramCustomizer[]; | 70 extern const char kDisableHistogramCustomizer[]; |
71 CONTENT_EXPORT extern const char kDisableHTMLNotifications[]; | 71 CONTENT_EXPORT extern const char kDisableHTMLNotifications[]; |
72 extern const char kDisableImageTransportSurface[]; | 72 extern const char kDisableImageTransportSurface[]; |
73 CONTENT_EXPORT extern const char kDisableJava[]; | 73 CONTENT_EXPORT extern const char kDisableJava[]; |
74 CONTENT_EXPORT extern const char kDisableJavaScript[]; | 74 CONTENT_EXPORT extern const char kDisableJavaScript[]; |
| 75 extern const char kDisableKillAfterBadIPC[]; |
75 extern const char kDisableLegacyEncryptedMedia[]; | 76 extern const char kDisableLegacyEncryptedMedia[]; |
76 CONTENT_EXPORT extern const char kDisableLocalStorage[]; | 77 CONTENT_EXPORT extern const char kDisableLocalStorage[]; |
77 CONTENT_EXPORT extern const char kDisableLogging[]; | 78 CONTENT_EXPORT extern const char kDisableLogging[]; |
78 extern const char kDisablePepper3d[]; | 79 extern const char kDisablePepper3d[]; |
79 extern const char kDisablePinch[]; | 80 extern const char kDisablePinch[]; |
80 CONTENT_EXPORT extern const char kDisablePlugins[]; | 81 CONTENT_EXPORT extern const char kDisablePlugins[]; |
81 CONTENT_EXPORT extern const char kDisablePluginsDiscovery[]; | 82 CONTENT_EXPORT extern const char kDisablePluginsDiscovery[]; |
82 extern const char kDisableRemoteFonts[]; | 83 extern const char kDisableRemoteFonts[]; |
83 extern const char kDisableRendererAccessibility[]; | 84 extern const char kDisableRendererAccessibility[]; |
84 extern const char kDisableSeccompFilterSandbox[]; | 85 extern const char kDisableSeccompFilterSandbox[]; |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 #if defined(USE_AURA) | 285 #if defined(USE_AURA) |
285 CONTENT_EXPORT extern const char kTestCompositor[]; | 286 CONTENT_EXPORT extern const char kTestCompositor[]; |
286 #endif | 287 #endif |
287 | 288 |
288 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 289 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
289 // alphabetical order, or in one of the ifdefs (also in order in each section). | 290 // alphabetical order, or in one of the ifdefs (also in order in each section). |
290 | 291 |
291 } // namespace switches | 292 } // namespace switches |
292 | 293 |
293 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 294 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |