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 | 9 |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 CONTENT_EXPORT extern const char kPpapiOutOfProcess[]; | 161 CONTENT_EXPORT extern const char kPpapiOutOfProcess[]; |
162 extern const char kPpapiPluginLauncher[]; | 162 extern const char kPpapiPluginLauncher[]; |
163 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; | 163 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; |
164 extern const char kPpapiStartupDialog[]; | 164 extern const char kPpapiStartupDialog[]; |
165 CONTENT_EXPORT extern const char kProcessPerSite[]; | 165 CONTENT_EXPORT extern const char kProcessPerSite[]; |
166 CONTENT_EXPORT extern const char kProcessPerTab[]; | 166 CONTENT_EXPORT extern const char kProcessPerTab[]; |
167 CONTENT_EXPORT extern const char kProcessType[]; | 167 CONTENT_EXPORT extern const char kProcessType[]; |
168 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; | 168 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; |
169 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; | 169 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; |
170 CONTENT_EXPORT extern const char kRendererAssertTest[]; | 170 CONTENT_EXPORT extern const char kRendererAssertTest[]; |
171 #if defined(OS_POSIX) | |
172 extern const char kRendererCleanExit[]; | |
173 #endif | |
174 extern const char kRendererCmdPrefix[]; | 171 extern const char kRendererCmdPrefix[]; |
175 CONTENT_EXPORT extern const char kRendererProcess[]; | 172 CONTENT_EXPORT extern const char kRendererProcess[]; |
176 extern const char kRendererProcessLimit[]; | 173 extern const char kRendererProcessLimit[]; |
177 extern const char kRendererStartupDialog[]; | 174 extern const char kRendererStartupDialog[]; |
178 // TODO(jam): this doesn't belong in content. | 175 // TODO(jam): this doesn't belong in content. |
179 CONTENT_EXPORT extern const char kServiceProcess[]; | 176 CONTENT_EXPORT extern const char kServiceProcess[]; |
180 extern const char kShowCompositedLayerBorders[]; | 177 extern const char kShowCompositedLayerBorders[]; |
181 extern const char kShowCompositedLayerTree[]; | 178 extern const char kShowCompositedLayerTree[]; |
182 extern const char kShowFPSCounter[]; | 179 extern const char kShowFPSCounter[]; |
183 extern const char kShowPaintRects[]; | 180 extern const char kShowPaintRects[]; |
(...skipping 26 matching lines...) Expand all Loading... |
210 extern const char kEnableVisualWordMovement[]; | 207 extern const char kEnableVisualWordMovement[]; |
211 | 208 |
212 #if defined(OS_ANDROID) | 209 #if defined(OS_ANDROID) |
213 extern const char kUseMobileUserAgent[]; | 210 extern const char kUseMobileUserAgent[]; |
214 extern const char kGraphicsMode[]; | 211 extern const char kGraphicsMode[]; |
215 // Not actual flags, just values: for example, --graphics-mode=compositor | 212 // Not actual flags, just values: for example, --graphics-mode=compositor |
216 extern const char kGraphicsModeValueBasic[]; | 213 extern const char kGraphicsModeValueBasic[]; |
217 extern const char kGraphicsModeValueCompositor[]; | 214 extern const char kGraphicsModeValueCompositor[]; |
218 #endif | 215 #endif |
219 | 216 |
| 217 #if defined(OS_POSIX) |
| 218 extern const char kChildCleanExit[]; |
| 219 #endif |
| 220 |
220 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 221 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
221 extern const char kScrollPixels[]; | 222 extern const char kScrollPixels[]; |
222 #endif | 223 #endif |
223 | 224 |
224 #if defined(OS_MACOSX) || defined(OS_WIN) | 225 #if defined(OS_MACOSX) || defined(OS_WIN) |
225 extern const char kUseSystemSSL[]; | 226 extern const char kUseSystemSSL[]; |
226 #endif | 227 #endif |
227 | 228 |
228 extern const char kEnablePerTilePainting[]; | 229 extern const char kEnablePerTilePainting[]; |
229 | 230 |
230 #if defined(USE_AURA) | 231 #if defined(USE_AURA) |
231 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 232 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
232 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 233 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
233 CONTENT_EXPORT extern const char kTestCompositor[]; | 234 CONTENT_EXPORT extern const char kTestCompositor[]; |
234 #endif | 235 #endif |
235 | 236 |
236 } // namespace switches | 237 } // namespace switches |
237 | 238 |
238 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 239 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |