OLD | NEW |
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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 CONTENT_EXPORT extern const char kForceRendererAccessibility[]; | 124 CONTENT_EXPORT extern const char kForceRendererAccessibility[]; |
125 extern const char kGpuDeviceID[]; | 125 extern const char kGpuDeviceID[]; |
126 extern const char kGpuDriverVersion[]; | 126 extern const char kGpuDriverVersion[]; |
127 extern const char kGpuLauncher[]; | 127 extern const char kGpuLauncher[]; |
128 CONTENT_EXPORT extern const char kGpuProcess[]; | 128 CONTENT_EXPORT extern const char kGpuProcess[]; |
129 extern const char kGpuStartupDialog[]; | 129 extern const char kGpuStartupDialog[]; |
130 extern const char kGpuVendorID[]; | 130 extern const char kGpuVendorID[]; |
131 extern const char kInProcessGPU[]; | 131 extern const char kInProcessGPU[]; |
132 extern const char kInProcessPlugins[]; | 132 extern const char kInProcessPlugins[]; |
133 CONTENT_EXPORT extern const char kInProcessWebGL[]; | 133 CONTENT_EXPORT extern const char kInProcessWebGL[]; |
134 CONTENT_EXPORT extern const char kInvertWebContent[]; | |
135 CONTENT_EXPORT extern const char kJavaScriptFlags[]; | 134 CONTENT_EXPORT extern const char kJavaScriptFlags[]; |
136 extern const char kLoadPlugin[]; | 135 extern const char kLoadPlugin[]; |
137 CONTENT_EXPORT extern const char kLoggingLevel[]; | 136 CONTENT_EXPORT extern const char kLoggingLevel[]; |
138 extern const char kLogPluginMessages[]; | 137 extern const char kLogPluginMessages[]; |
139 // TODO(jam): this doesn't belong in content. | 138 // TODO(jam): this doesn't belong in content. |
140 CONTENT_EXPORT extern const char kNaClBrokerProcess[]; | 139 CONTENT_EXPORT extern const char kNaClBrokerProcess[]; |
141 CONTENT_EXPORT extern const char kNaClLoaderProcess[]; | 140 CONTENT_EXPORT extern const char kNaClLoaderProcess[]; |
142 CONTENT_EXPORT extern const char kNoReferrers[]; | 141 CONTENT_EXPORT extern const char kNoReferrers[]; |
143 CONTENT_EXPORT extern const char kNoSandbox[]; | 142 CONTENT_EXPORT extern const char kNoSandbox[]; |
144 extern const char kPluginLauncher[]; | 143 extern const char kPluginLauncher[]; |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 | 209 |
211 #if defined(USE_AURA) | 210 #if defined(USE_AURA) |
212 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 211 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
213 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 212 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
214 CONTENT_EXPORT extern const char kTestCompositor[]; | 213 CONTENT_EXPORT extern const char kTestCompositor[]; |
215 #endif | 214 #endif |
216 | 215 |
217 } // namespace switches | 216 } // namespace switches |
218 | 217 |
219 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 218 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |