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