Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(633)

Side by Side Diff: content/public/common/content_switches.h

Issue 18254010: IPC fuzzer child process component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: replace ShouldKillChildProcessOnBadMessage with --disable-kill-after-bad-ipc Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 CONTENT_EXPORT extern const char kDisableGpuCompositing[]; 64 CONTENT_EXPORT extern const char kDisableGpuCompositing[];
65 CONTENT_EXPORT extern const char kDisableGpuProcessPrelaunch[]; 65 CONTENT_EXPORT extern const char kDisableGpuProcessPrelaunch[];
66 extern const char kDisableGpuSandbox[]; 66 extern const char kDisableGpuSandbox[];
67 extern const char kDisableGpuWatchdog[]; 67 extern const char kDisableGpuWatchdog[];
68 CONTENT_EXPORT extern const char kDisableHangMonitor[]; 68 CONTENT_EXPORT extern const char kDisableHangMonitor[];
69 extern const char kDisableHistogramCustomizer[]; 69 extern const char kDisableHistogramCustomizer[];
70 CONTENT_EXPORT extern const char kDisableHTMLNotifications[]; 70 CONTENT_EXPORT extern const char kDisableHTMLNotifications[];
71 extern const char kDisableImageTransportSurface[]; 71 extern const char kDisableImageTransportSurface[];
72 CONTENT_EXPORT extern const char kDisableJava[]; 72 CONTENT_EXPORT extern const char kDisableJava[];
73 CONTENT_EXPORT extern const char kDisableJavaScript[]; 73 CONTENT_EXPORT extern const char kDisableJavaScript[];
74 extern const char kDisableKillAfterBadIPC[];
74 extern const char kDisableLegacyEncryptedMedia[]; 75 extern const char kDisableLegacyEncryptedMedia[];
75 CONTENT_EXPORT extern const char kDisableLocalStorage[]; 76 CONTENT_EXPORT extern const char kDisableLocalStorage[];
76 CONTENT_EXPORT extern const char kDisableLogging[]; 77 CONTENT_EXPORT extern const char kDisableLogging[];
77 extern const char kDisablePepper3d[]; 78 extern const char kDisablePepper3d[];
78 extern const char kDisablePinch[]; 79 extern const char kDisablePinch[];
79 CONTENT_EXPORT extern const char kDisablePlugins[]; 80 CONTENT_EXPORT extern const char kDisablePlugins[];
80 CONTENT_EXPORT extern const char kDisablePluginsDiscovery[]; 81 CONTENT_EXPORT extern const char kDisablePluginsDiscovery[];
81 extern const char kDisableRemoteFonts[]; 82 extern const char kDisableRemoteFonts[];
82 extern const char kDisableRendererAccessibility[]; 83 extern const char kDisableRendererAccessibility[];
83 extern const char kDisableSeccompFilterSandbox[]; 84 extern const char kDisableSeccompFilterSandbox[];
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 #if defined(USE_AURA) 282 #if defined(USE_AURA)
282 CONTENT_EXPORT extern const char kTestCompositor[]; 283 CONTENT_EXPORT extern const char kTestCompositor[];
283 #endif 284 #endif
284 285
285 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 286 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
286 // alphabetical order, or in one of the ifdefs (also in order in each section). 287 // alphabetical order, or in one of the ifdefs (also in order in each section).
287 288
288 } // namespace switches 289 } // namespace switches
289 290
290 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 291 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698