| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 extern const char kDefaultTileWidth[]; | 196 extern const char kDefaultTileWidth[]; |
| 197 extern const char kDefaultTileHeight[]; | 197 extern const char kDefaultTileHeight[]; |
| 198 extern const char kMaxUntiledLayerWidth[]; | 198 extern const char kMaxUntiledLayerWidth[]; |
| 199 extern const char kMaxUntiledLayerHeight[]; | 199 extern const char kMaxUntiledLayerHeight[]; |
| 200 CONTENT_EXPORT extern const char kEnableFixedPositionCreatesStackingContext[]; | 200 CONTENT_EXPORT extern const char kEnableFixedPositionCreatesStackingContext[]; |
| 201 CONTENT_EXPORT extern const char kDisableFixedPositionCreatesStackingContext[]; | 201 CONTENT_EXPORT extern const char kDisableFixedPositionCreatesStackingContext[]; |
| 202 | 202 |
| 203 extern const char kEnableVisualWordMovement[]; | 203 extern const char kEnableVisualWordMovement[]; |
| 204 | 204 |
| 205 #if defined(OS_ANDROID) | 205 #if defined(OS_ANDROID) |
| 206 extern const char kMediaPlayerInRenderProcess[]; |
| 207 extern const char kDisableMediaHistoryLogging[]; |
| 206 extern const char kNetworkCountryIso[]; | 208 extern const char kNetworkCountryIso[]; |
| 207 extern const char kUseMobileUserAgent[]; | 209 extern const char kUseMobileUserAgent[]; |
| 208 extern const char kGraphicsMode[]; | 210 extern const char kGraphicsMode[]; |
| 209 // Not actual flags, just values: for example, --graphics-mode=compositor | 211 // Not actual flags, just values: for example, --graphics-mode=compositor |
| 210 extern const char kGraphicsModeValueBasic[]; | 212 extern const char kGraphicsModeValueBasic[]; |
| 211 extern const char kGraphicsModeValueCompositor[]; | 213 extern const char kGraphicsModeValueCompositor[]; |
| 212 #endif | 214 #endif |
| 213 | 215 |
| 214 #if defined(OS_POSIX) | 216 #if defined(OS_POSIX) |
| 215 extern const char kChildCleanExit[]; | 217 extern const char kChildCleanExit[]; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 227 | 229 |
| 228 #if defined(USE_AURA) | 230 #if defined(USE_AURA) |
| 229 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 231 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
| 230 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 232 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
| 231 CONTENT_EXPORT extern const char kTestCompositor[]; | 233 CONTENT_EXPORT extern const char kTestCompositor[]; |
| 232 #endif | 234 #endif |
| 233 | 235 |
| 234 } // namespace switches | 236 } // namespace switches |
| 235 | 237 |
| 236 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 238 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |