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

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

Issue 100373005: Initial implementation of Bare Metal Mode for NaCl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 CONTENT_EXPORT extern const char kDisableHangMonitor[]; 79 CONTENT_EXPORT extern const char kDisableHangMonitor[];
80 extern const char kDisableHistogramCustomizer[]; 80 extern const char kDisableHistogramCustomizer[];
81 CONTENT_EXPORT extern const char kDisableHTMLNotifications[]; 81 CONTENT_EXPORT extern const char kDisableHTMLNotifications[];
82 extern const char kDisableImageTransportSurface[]; 82 extern const char kDisableImageTransportSurface[];
83 CONTENT_EXPORT extern const char kDisableJava[]; 83 CONTENT_EXPORT extern const char kDisableJava[];
84 CONTENT_EXPORT extern const char kDisableJavaScript[]; 84 CONTENT_EXPORT extern const char kDisableJavaScript[];
85 CONTENT_EXPORT extern const char kDisablePrefixedEncryptedMedia[]; 85 CONTENT_EXPORT extern const char kDisablePrefixedEncryptedMedia[];
86 extern const char kDisableKillAfterBadIPC[]; 86 extern const char kDisableKillAfterBadIPC[];
87 CONTENT_EXPORT extern const char kDisableLocalStorage[]; 87 CONTENT_EXPORT extern const char kDisableLocalStorage[];
88 CONTENT_EXPORT extern const char kDisableLogging[]; 88 CONTENT_EXPORT extern const char kDisableLogging[];
89 CONTENT_EXPORT extern const char kDisableNaClSfi[];
89 extern const char kDisablePepper3d[]; 90 extern const char kDisablePepper3d[];
90 CONTENT_EXPORT extern const char kDisablePinch[]; 91 CONTENT_EXPORT extern const char kDisablePinch[];
91 CONTENT_EXPORT extern const char kDisablePlugins[]; 92 CONTENT_EXPORT extern const char kDisablePlugins[];
92 CONTENT_EXPORT extern const char kDisablePluginsDiscovery[]; 93 CONTENT_EXPORT extern const char kDisablePluginsDiscovery[];
93 extern const char kDisableRemoteFonts[]; 94 extern const char kDisableRemoteFonts[];
94 extern const char kDisableRendererAccessibility[]; 95 extern const char kDisableRendererAccessibility[];
95 CONTENT_EXPORT extern const char kDisableSeccompFilterSandbox[]; 96 CONTENT_EXPORT extern const char kDisableSeccompFilterSandbox[];
96 extern const char kDisableSessionStorage[]; 97 extern const char kDisableSessionStorage[];
97 CONTENT_EXPORT extern const char kDisableSetuidSandbox[]; 98 CONTENT_EXPORT extern const char kDisableSetuidSandbox[];
98 CONTENT_EXPORT extern const char kDisableSharedWorkers[]; 99 CONTENT_EXPORT extern const char kDisableSharedWorkers[];
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 #if defined(OS_POSIX) 307 #if defined(OS_POSIX)
307 extern const char kChildCleanExit[]; 308 extern const char kChildCleanExit[];
308 #endif 309 #endif
309 310
310 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 311 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
311 // alphabetical order, or in one of the ifdefs (also in order in each section). 312 // alphabetical order, or in one of the ifdefs (also in order in each section).
312 313
313 } // namespace switches 314 } // namespace switches
314 315
315 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 316 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698