| 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 CONTENT_EXPORT extern const char kEnableVsyncNotification[]; | 223 CONTENT_EXPORT extern const char kEnableVsyncNotification[]; |
| 224 | 224 |
| 225 extern const char kEnableVisualWordMovement[]; | 225 extern const char kEnableVisualWordMovement[]; |
| 226 CONTENT_EXPORT extern const char kUseMobileUserAgent[]; | 226 CONTENT_EXPORT extern const char kUseMobileUserAgent[]; |
| 227 | 227 |
| 228 #if defined(OS_ANDROID) | 228 #if defined(OS_ANDROID) |
| 229 extern const char kDisableMediaHistoryLogging[]; | 229 extern const char kDisableMediaHistoryLogging[]; |
| 230 extern const char kDisableGestureRequirementForMediaPlayback[]; | 230 extern const char kDisableGestureRequirementForMediaPlayback[]; |
| 231 extern const char kNetworkCountryIso[]; | 231 extern const char kNetworkCountryIso[]; |
| 232 CONTENT_EXPORT extern const char kEnableWebViewSynchronousAPIs[]; | 232 CONTENT_EXPORT extern const char kEnableWebViewSynchronousAPIs[]; |
| 233 CONTENT_EXPORT extern const char kEnableOverscrollEdgeEffect[]; |
| 233 #endif | 234 #endif |
| 234 | 235 |
| 235 #if defined(OS_CHROMEOS) | 236 #if defined(OS_CHROMEOS) |
| 236 CONTENT_EXPORT extern const char kDisablePanelFitting[]; | 237 CONTENT_EXPORT extern const char kDisablePanelFitting[]; |
| 237 #endif | 238 #endif |
| 238 | 239 |
| 239 #if defined(OS_POSIX) | 240 #if defined(OS_POSIX) |
| 240 extern const char kChildCleanExit[]; | 241 extern const char kChildCleanExit[]; |
| 241 #endif | 242 #endif |
| 242 | 243 |
| 243 #if defined(OS_MACOSX) && !defined(OS_IOS) | 244 #if defined(OS_MACOSX) && !defined(OS_IOS) |
| 244 extern const char kDisableCarbonInterposing[]; | 245 extern const char kDisableCarbonInterposing[]; |
| 245 #endif | 246 #endif |
| 246 | 247 |
| 247 #if defined(USE_AURA) | 248 #if defined(USE_AURA) |
| 248 CONTENT_EXPORT extern const char kTestCompositor[]; | 249 CONTENT_EXPORT extern const char kTestCompositor[]; |
| 249 #endif | 250 #endif |
| 250 | 251 |
| 251 extern const char kEnableWebPInAcceptHeader[]; | 252 extern const char kEnableWebPInAcceptHeader[]; |
| 252 | 253 |
| 253 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; | 254 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; |
| 254 | 255 |
| 255 } // namespace switches | 256 } // namespace switches |
| 256 | 257 |
| 257 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 258 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |