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

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

Issue 10534049: Disable the seccomp filter GPU process sandbox by default on Chrome OS. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 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 #pragma once 9 #pragma once
10 10
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 CONTENT_EXPORT extern const char kDisableLocalStorage[]; 60 CONTENT_EXPORT extern const char kDisableLocalStorage[];
61 CONTENT_EXPORT extern const char kDisableLogging[]; 61 CONTENT_EXPORT extern const char kDisableLogging[];
62 CONTENT_EXPORT extern const char kDisableSmoothScrolling[]; 62 CONTENT_EXPORT extern const char kDisableSmoothScrolling[];
63 CONTENT_EXPORT extern const char kDisablePlugins[]; 63 CONTENT_EXPORT extern const char kDisablePlugins[];
64 CONTENT_EXPORT extern const char kDisablePopupBlocking[]; 64 CONTENT_EXPORT extern const char kDisablePopupBlocking[];
65 extern const char kDisableRemoteFonts[]; 65 extern const char kDisableRemoteFonts[];
66 extern const char kDisableRendererAccessibility[]; 66 extern const char kDisableRendererAccessibility[];
67 extern const char kDisableSSLFalseStart[]; 67 extern const char kDisableSSLFalseStart[];
68 extern const char kDisableSeccompSandbox[]; 68 extern const char kDisableSeccompSandbox[];
69 extern const char kDisableSeccompFilterSandbox[]; 69 extern const char kDisableSeccompFilterSandbox[];
70 extern const char kEnableChromeOSGPUSandbox[];
70 extern const char kDisableSessionStorage[]; 71 extern const char kDisableSessionStorage[];
71 extern const char kDisableSharedWorkers[]; 72 extern const char kDisableSharedWorkers[];
72 extern const char kDisableSiteSpecificQuirks[]; 73 extern const char kDisableSiteSpecificQuirks[];
73 CONTENT_EXPORT extern const char kDisableSpeechInput[]; 74 CONTENT_EXPORT extern const char kDisableSpeechInput[];
74 CONTENT_EXPORT extern const char kEnableScriptedSpeech[]; 75 CONTENT_EXPORT extern const char kEnableScriptedSpeech[];
75 CONTENT_EXPORT extern const char kDisableThreadedAnimation[]; 76 CONTENT_EXPORT extern const char kDisableThreadedAnimation[];
76 CONTENT_EXPORT extern const char kDisableWebAudio[]; 77 CONTENT_EXPORT extern const char kDisableWebAudio[];
77 extern const char kDisableWebSecurity[]; 78 extern const char kDisableWebSecurity[];
78 extern const char kDisableWebSockets[]; 79 extern const char kDisableWebSockets[];
79 extern const char kDisableXSSAuditor[]; 80 extern const char kDisableXSSAuditor[];
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 209
209 #if defined(USE_AURA) 210 #if defined(USE_AURA)
210 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; 211 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[];
211 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; 212 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[];
212 CONTENT_EXPORT extern const char kTestCompositor[]; 213 CONTENT_EXPORT extern const char kTestCompositor[];
213 #endif 214 #endif
214 215
215 } // namespace switches 216 } // namespace switches
216 217
217 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 218 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698