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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
210 extern const char kMaxUntiledLayerWidth[]; | 210 extern const char kMaxUntiledLayerWidth[]; |
211 extern const char kMaxUntiledLayerHeight[]; | 211 extern const char kMaxUntiledLayerHeight[]; |
212 CONTENT_EXPORT extern const char kEnableFixedPositionCreatesStackingContext[]; | 212 CONTENT_EXPORT extern const char kEnableFixedPositionCreatesStackingContext[]; |
213 CONTENT_EXPORT extern const char kDisableFixedPositionCreatesStackingContext[]; | 213 CONTENT_EXPORT extern const char kDisableFixedPositionCreatesStackingContext[]; |
214 CONTENT_EXPORT extern const char kEnableDeferredImageDecoding[]; | 214 CONTENT_EXPORT extern const char kEnableDeferredImageDecoding[]; |
215 | 215 |
216 extern const char kEnableVisualWordMovement[]; | 216 extern const char kEnableVisualWordMovement[]; |
217 CONTENT_EXPORT extern const char kUseMobileUserAgent[]; | 217 CONTENT_EXPORT extern const char kUseMobileUserAgent[]; |
218 | 218 |
219 #if defined(OS_ANDROID) | 219 #if defined(OS_ANDROID) |
220 extern const char kDisableMediaHistoryLogging[]; | |
221 extern const char kEnableWebViewSynchronousAPIs[]; | |
ycheo (away)
2012/12/13 05:55:00
You don't need to change the order of these consta
wonsik2
2012/12/17 04:36:05
Well I wanted to alphabetize the list.
| |
220 extern const char kMediaPlayerInRenderProcess[]; | 222 extern const char kMediaPlayerInRenderProcess[]; |
221 extern const char kDisableMediaHistoryLogging[]; | |
222 extern const char kNetworkCountryIso[]; | 223 extern const char kNetworkCountryIso[]; |
223 extern const char kEnableWebViewSynchronousAPIs[]; | 224 extern const char kRenderVideoOnExternalSurface[]; |
224 #endif | 225 #endif |
225 | 226 |
226 #if defined(OS_POSIX) | 227 #if defined(OS_POSIX) |
227 extern const char kChildCleanExit[]; | 228 extern const char kChildCleanExit[]; |
228 #endif | 229 #endif |
229 | 230 |
230 #if defined(OS_MACOSX) || defined(OS_WIN) | 231 #if defined(OS_MACOSX) || defined(OS_WIN) |
231 extern const char kUseSystemSSL[]; | 232 extern const char kUseSystemSSL[]; |
232 #endif | 233 #endif |
233 | 234 |
234 #if defined(OS_MACOSX) && !defined(OS_IOS) | 235 #if defined(OS_MACOSX) && !defined(OS_IOS) |
235 extern const char kDisableCarbonInterposing[]; | 236 extern const char kDisableCarbonInterposing[]; |
236 #endif | 237 #endif |
237 | 238 |
238 #if defined(USE_AURA) | 239 #if defined(USE_AURA) |
239 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 240 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
240 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 241 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
241 CONTENT_EXPORT extern const char kTestCompositor[]; | 242 CONTENT_EXPORT extern const char kTestCompositor[]; |
242 #endif | 243 #endif |
243 | 244 |
244 CONTENT_EXPORT extern const char kEnableOverscrollHistoryNavigation[]; | 245 CONTENT_EXPORT extern const char kEnableOverscrollHistoryNavigation[]; |
245 | 246 |
246 } // namespace switches | 247 } // namespace switches |
247 | 248 |
248 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 249 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |