| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 extern const char kDefaultTileWidth[]; | 204 extern const char kDefaultTileWidth[]; |
| 205 extern const char kDefaultTileHeight[]; | 205 extern const char kDefaultTileHeight[]; |
| 206 extern const char kMaxUntiledLayerWidth[]; | 206 extern const char kMaxUntiledLayerWidth[]; |
| 207 extern const char kMaxUntiledLayerHeight[]; | 207 extern const char kMaxUntiledLayerHeight[]; |
| 208 CONTENT_EXPORT extern const char kEnableFixedPositionCreatesStackingContext[]; | 208 CONTENT_EXPORT extern const char kEnableFixedPositionCreatesStackingContext[]; |
| 209 CONTENT_EXPORT extern const char kDisableFixedPositionCreatesStackingContext[]; | 209 CONTENT_EXPORT extern const char kDisableFixedPositionCreatesStackingContext[]; |
| 210 | 210 |
| 211 extern const char kEnableVisualWordMovement[]; | 211 extern const char kEnableVisualWordMovement[]; |
| 212 | 212 |
| 213 #if defined(OS_ANDROID) | 213 #if defined(OS_ANDROID) |
| 214 extern const char kMediaPlayerInRenderProcess[]; |
| 215 extern const char kDisableMediaHistoryLogging[]; |
| 214 extern const char kNetworkCountryIso[]; | 216 extern const char kNetworkCountryIso[]; |
| 215 extern const char kUseMobileUserAgent[]; | 217 extern const char kUseMobileUserAgent[]; |
| 216 extern const char kGraphicsMode[]; | 218 extern const char kGraphicsMode[]; |
| 217 // Not actual flags, just values: for example, --graphics-mode=compositor | 219 // Not actual flags, just values: for example, --graphics-mode=compositor |
| 218 extern const char kGraphicsModeValueBasic[]; | 220 extern const char kGraphicsModeValueBasic[]; |
| 219 extern const char kGraphicsModeValueCompositor[]; | 221 extern const char kGraphicsModeValueCompositor[]; |
| 220 #endif | 222 #endif |
| 221 | 223 |
| 222 #if defined(OS_POSIX) | 224 #if defined(OS_POSIX) |
| 223 extern const char kChildCleanExit[]; | 225 extern const char kChildCleanExit[]; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 235 | 237 |
| 236 #if defined(USE_AURA) | 238 #if defined(USE_AURA) |
| 237 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 239 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
| 238 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 240 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
| 239 CONTENT_EXPORT extern const char kTestCompositor[]; | 241 CONTENT_EXPORT extern const char kTestCompositor[]; |
| 240 #endif | 242 #endif |
| 241 | 243 |
| 242 } // namespace switches | 244 } // namespace switches |
| 243 | 245 |
| 244 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 246 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |