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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 CONTENT_EXPORT extern const char kZygoteProcess[]; | 192 CONTENT_EXPORT extern const char kZygoteProcess[]; |
193 CONTENT_EXPORT extern const char kDisableSoftwareRasterizer[]; | 193 CONTENT_EXPORT extern const char kDisableSoftwareRasterizer[]; |
194 extern const char kDefaultTileWidth[]; | 194 extern const char kDefaultTileWidth[]; |
195 extern const char kDefaultTileHeight[]; | 195 extern const char kDefaultTileHeight[]; |
196 extern const char kMaxUntiledLayerWidth[]; | 196 extern const char kMaxUntiledLayerWidth[]; |
197 extern const char kMaxUntiledLayerHeight[]; | 197 extern const char kMaxUntiledLayerHeight[]; |
198 CONTENT_EXPORT extern const char kFixedPositionCreatesStackingContext[]; | 198 CONTENT_EXPORT extern const char kFixedPositionCreatesStackingContext[]; |
199 | 199 |
200 extern const char kEnableVisualWordMovement[]; | 200 extern const char kEnableVisualWordMovement[]; |
201 | 201 |
| 202 #if defined(OS_ANDROID) |
| 203 extern const char kGraphicsMode[]; |
| 204 // Not actual flags, just values: for example, --graphics-mode=compositor |
| 205 extern const char kGraphicsModeValueBasic[]; |
| 206 extern const char kGraphicsModeValueCompositor[]; |
| 207 #endif |
| 208 |
202 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 209 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
203 extern const char kScrollPixels[]; | 210 extern const char kScrollPixels[]; |
204 #endif | 211 #endif |
205 | 212 |
206 #if defined(OS_MACOSX) || defined(OS_WIN) | 213 #if defined(OS_MACOSX) || defined(OS_WIN) |
207 extern const char kUseSystemSSL[]; | 214 extern const char kUseSystemSSL[]; |
208 #endif | 215 #endif |
209 | 216 |
210 extern const char kEnablePerTilePainting[]; | 217 extern const char kEnablePerTilePainting[]; |
211 | 218 |
212 #if defined(USE_AURA) | 219 #if defined(USE_AURA) |
213 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 220 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
214 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 221 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
215 CONTENT_EXPORT extern const char kTestCompositor[]; | 222 CONTENT_EXPORT extern const char kTestCompositor[]; |
216 #endif | 223 #endif |
217 | 224 |
218 } // namespace switches | 225 } // namespace switches |
219 | 226 |
220 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 227 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |