OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_COMMON_CONTENT_SWITCHES_H_ | 7 #ifndef CONTENT_COMMON_CONTENT_SWITCHES_H_ |
8 #define CONTENT_COMMON_CONTENT_SWITCHES_H_ | 8 #define CONTENT_COMMON_CONTENT_SWITCHES_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 extern const char kEnablePreparsedJsCaching[]; | 79 extern const char kEnablePreparsedJsCaching[]; |
80 extern const char kEnableSSLCachedInfo[]; | 80 extern const char kEnableSSLCachedInfo[]; |
81 extern const char kEnableSandboxLogging[]; | 81 extern const char kEnableSandboxLogging[]; |
82 extern const char kEnableSeccompSandbox[]; | 82 extern const char kEnableSeccompSandbox[]; |
83 CONTENT_EXPORT extern const char kEnableStatsTable[]; | 83 CONTENT_EXPORT extern const char kEnableStatsTable[]; |
84 CONTENT_EXPORT extern const char kEnableTcpFastOpen[]; | 84 CONTENT_EXPORT extern const char kEnableTcpFastOpen[]; |
85 extern const char kEnableVideoFullscreen[]; | 85 extern const char kEnableVideoFullscreen[]; |
86 extern const char kEnableVideoLogging[]; | 86 extern const char kEnableVideoLogging[]; |
87 CONTENT_EXPORT extern const char kEnableWebIntents[]; | 87 CONTENT_EXPORT extern const char kEnableWebIntents[]; |
88 CONTENT_EXPORT extern const char kExperimentalLocationFeatures[]; | 88 CONTENT_EXPORT extern const char kExperimentalLocationFeatures[]; |
89 // TODO(jam): this doesn't belong in content. | |
90 CONTENT_EXPORT extern const char kExtensionProcess[]; | |
91 extern const char kExtraPluginDir[]; | 89 extern const char kExtraPluginDir[]; |
92 extern const char kForceFieldTestNameAndValue[]; | 90 extern const char kForceFieldTestNameAndValue[]; |
93 CONTENT_EXPORT extern const char kForceRendererAccessibility[]; | 91 CONTENT_EXPORT extern const char kForceRendererAccessibility[]; |
94 extern const char kGpuLauncher[]; | 92 extern const char kGpuLauncher[]; |
95 CONTENT_EXPORT extern const char kGpuProcess[]; | 93 CONTENT_EXPORT extern const char kGpuProcess[]; |
96 extern const char kGpuStartupDialog[]; | 94 extern const char kGpuStartupDialog[]; |
97 CONTENT_EXPORT extern const char kIgnoreGpuBlacklist[]; | 95 CONTENT_EXPORT extern const char kIgnoreGpuBlacklist[]; |
98 extern const char kInProcessGPU[]; | 96 extern const char kInProcessGPU[]; |
99 extern const char kInProcessPlugins[]; | 97 extern const char kInProcessPlugins[]; |
100 CONTENT_EXPORT extern const char kInProcessWebGL[]; | 98 CONTENT_EXPORT extern const char kInProcessWebGL[]; |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 extern const char kUseSystemSSL[]; | 164 extern const char kUseSystemSSL[]; |
167 #endif | 165 #endif |
168 | 166 |
169 #if !defined(OFFICIAL_BUILD) | 167 #if !defined(OFFICIAL_BUILD) |
170 CONTENT_EXPORT extern const char kRendererCheckFalseTest[]; | 168 CONTENT_EXPORT extern const char kRendererCheckFalseTest[]; |
171 #endif | 169 #endif |
172 | 170 |
173 } // namespace switches | 171 } // namespace switches |
174 | 172 |
175 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ | 173 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |