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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 CONTENT_EXPORT extern const char kDisableFixedPositionCreatesStackingContext[]; | 216 CONTENT_EXPORT extern const char kDisableFixedPositionCreatesStackingContext[]; |
217 CONTENT_EXPORT extern const char kEnableDeferredImageDecoding[]; | 217 CONTENT_EXPORT extern const char kEnableDeferredImageDecoding[]; |
218 | 218 |
219 extern const char kEnableVisualWordMovement[]; | 219 extern const char kEnableVisualWordMovement[]; |
220 CONTENT_EXPORT extern const char kUseMobileUserAgent[]; | 220 CONTENT_EXPORT extern const char kUseMobileUserAgent[]; |
221 | 221 |
222 #if defined(OS_ANDROID) | 222 #if defined(OS_ANDROID) |
223 extern const char kDisableMediaHistoryLogging[]; | 223 extern const char kDisableMediaHistoryLogging[]; |
224 extern const char kDisableGestureRequirementForMediaPlayback[]; | 224 extern const char kDisableGestureRequirementForMediaPlayback[]; |
225 extern const char kNetworkCountryIso[]; | 225 extern const char kNetworkCountryIso[]; |
226 extern const char kEnableWebViewSynchronousAPIs[]; | 226 CONTENT_EXPORT extern const char kEnableWebViewSynchronousAPIs[]; |
227 #endif | 227 #endif |
228 | 228 |
229 #if defined(OS_CHROMEOS) | 229 #if defined(OS_CHROMEOS) |
230 CONTENT_EXPORT extern const char kDisablePanelFitting[]; | 230 CONTENT_EXPORT extern const char kDisablePanelFitting[]; |
231 #endif | 231 #endif |
232 | 232 |
233 #if defined(OS_POSIX) | 233 #if defined(OS_POSIX) |
234 extern const char kChildCleanExit[]; | 234 extern const char kChildCleanExit[]; |
235 #endif | 235 #endif |
236 | 236 |
237 #if defined(OS_MACOSX) && !defined(OS_IOS) | 237 #if defined(OS_MACOSX) && !defined(OS_IOS) |
238 extern const char kDisableCarbonInterposing[]; | 238 extern const char kDisableCarbonInterposing[]; |
239 #endif | 239 #endif |
240 | 240 |
241 #if defined(USE_AURA) | 241 #if defined(USE_AURA) |
242 CONTENT_EXPORT extern const char kTestCompositor[]; | 242 CONTENT_EXPORT extern const char kTestCompositor[]; |
243 #endif | 243 #endif |
244 | 244 |
245 CONTENT_EXPORT extern const char kDisableOverscrollHistoryNavigation[]; | 245 CONTENT_EXPORT extern const char kDisableOverscrollHistoryNavigation[]; |
246 | 246 |
247 } // namespace switches | 247 } // namespace switches |
248 | 248 |
249 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 249 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |