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

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

Issue 2672003002: Remove the --allow-no-sandbox-job flag in favor of automatic recognition. (Closed)
Patch Set: Forgot one ref to the removed switch. Created 3 years, 10 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
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"
11 #include "content/common/content_export.h" 11 #include "content/common/content_export.h"
12 #include "media/media_features.h" 12 #include "media/media_features.h"
13 13
14 namespace switches { 14 namespace switches {
15 15
16 // All switches in alphabetical order. The switches should be documented 16 // All switches in alphabetical order. The switches should be documented
17 // alongside the definition of their values in the .cc file. 17 // alongside the definition of their values in the .cc file.
18 CONTENT_EXPORT extern const char kAcceleratedCanvas2dMSAASampleCount[]; 18 CONTENT_EXPORT extern const char kAcceleratedCanvas2dMSAASampleCount[];
19 CONTENT_EXPORT extern const char kAecRefinedAdaptiveFilter[]; 19 CONTENT_EXPORT extern const char kAecRefinedAdaptiveFilter[];
20 CONTENT_EXPORT extern const char kAgcStartupMinVolume[]; 20 CONTENT_EXPORT extern const char kAgcStartupMinVolume[];
21 CONTENT_EXPORT extern const char kAllowFileAccessFromFiles[]; 21 CONTENT_EXPORT extern const char kAllowFileAccessFromFiles[];
22 CONTENT_EXPORT extern const char kAllowInsecureLocalhost[]; 22 CONTENT_EXPORT extern const char kAllowInsecureLocalhost[];
23 CONTENT_EXPORT extern const char kAllowLoopbackInPeerConnection[]; 23 CONTENT_EXPORT extern const char kAllowLoopbackInPeerConnection[];
24 CONTENT_EXPORT extern const char kAllowNoSandboxJob[];
25 CONTENT_EXPORT extern const char kAllowSandboxDebugging[]; 24 CONTENT_EXPORT extern const char kAllowSandboxDebugging[];
26 CONTENT_EXPORT extern const char kAndroidFontsPath[]; 25 CONTENT_EXPORT extern const char kAndroidFontsPath[];
27 CONTENT_EXPORT extern const char kBlinkSettings[]; 26 CONTENT_EXPORT extern const char kBlinkSettings[];
28 CONTENT_EXPORT extern const char kBrowserCrashTest[]; 27 CONTENT_EXPORT extern const char kBrowserCrashTest[];
29 CONTENT_EXPORT extern const char kBrowserSubprocessPath[]; 28 CONTENT_EXPORT extern const char kBrowserSubprocessPath[];
30 CONTENT_EXPORT extern const char kDefaultTileWidth[]; 29 CONTENT_EXPORT extern const char kDefaultTileWidth[];
31 CONTENT_EXPORT extern const char kDefaultTileHeight[]; 30 CONTENT_EXPORT extern const char kDefaultTileHeight[];
32 CONTENT_EXPORT extern const char kDisable2dCanvasAntialiasing[]; 31 CONTENT_EXPORT extern const char kDisable2dCanvasAntialiasing[];
33 CONTENT_EXPORT extern const char kDisable2dCanvasImageChromium[]; 32 CONTENT_EXPORT extern const char kDisable2dCanvasImageChromium[];
34 CONTENT_EXPORT extern const char kDisable3DAPIs[]; 33 CONTENT_EXPORT extern const char kDisable3DAPIs[];
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 extern const char kIpcDumpDirectory[]; 325 extern const char kIpcDumpDirectory[];
327 extern const char kIpcFuzzerTestcase[]; 326 extern const char kIpcFuzzerTestcase[];
328 #endif 327 #endif
329 328
330 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 329 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
331 // alphabetical order, or in one of the ifdefs (also in order in each section). 330 // alphabetical order, or in one of the ifdefs (also in order in each section).
332 331
333 } // namespace switches 332 } // namespace switches
334 333
335 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 334 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698