| 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 extern const char kNetworkCountryIso[]; | 260 extern const char kNetworkCountryIso[]; |
| 261 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[]; | 261 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[]; |
| 262 #endif | 262 #endif |
| 263 | 263 |
| 264 #if defined(OS_CHROMEOS) | 264 #if defined(OS_CHROMEOS) |
| 265 CONTENT_EXPORT extern const char kDisablePanelFitting[]; | 265 CONTENT_EXPORT extern const char kDisablePanelFitting[]; |
| 266 #endif | 266 #endif |
| 267 | 267 |
| 268 #if defined(OS_POSIX) | 268 #if defined(OS_POSIX) |
| 269 extern const char kChildCleanExit[]; | 269 extern const char kChildCleanExit[]; |
| 270 extern const char kWaitForChildrenBeforeExiting[]; |
| 270 #endif | 271 #endif |
| 271 | 272 |
| 272 #if defined(OS_MACOSX) && !defined(OS_IOS) | 273 #if defined(OS_MACOSX) && !defined(OS_IOS) |
| 273 extern const char kDisableCarbonInterposing[]; | 274 extern const char kDisableCarbonInterposing[]; |
| 274 extern const char kUseCoreAnimation[]; | 275 extern const char kUseCoreAnimation[]; |
| 275 #endif | 276 #endif |
| 276 | 277 |
| 277 #if defined(USE_AURA) | 278 #if defined(USE_AURA) |
| 278 CONTENT_EXPORT extern const char kTestCompositor[]; | 279 CONTENT_EXPORT extern const char kTestCompositor[]; |
| 279 #endif | 280 #endif |
| 280 | 281 |
| 281 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; | 282 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; |
| 282 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[]; | 283 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[]; |
| 283 CONTENT_EXPORT extern const char kEnableWebGLDraftExtensions[]; | 284 CONTENT_EXPORT extern const char kEnableWebGLDraftExtensions[]; |
| 284 | 285 |
| 285 CONTENT_EXPORT extern const char kDisableAcceleratedFixedRootBackground[]; | 286 CONTENT_EXPORT extern const char kDisableAcceleratedFixedRootBackground[]; |
| 286 CONTENT_EXPORT extern const char kEnableAcceleratedFixedRootBackground[]; | 287 CONTENT_EXPORT extern const char kEnableAcceleratedFixedRootBackground[]; |
| 287 | 288 |
| 288 } // namespace switches | 289 } // namespace switches |
| 289 | 290 |
| 290 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 291 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |