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 26 matching lines...) Expand all Loading... |
37 CONTENT_EXPORT extern const char kDisableDeviceOrientation[]; | 37 CONTENT_EXPORT extern const char kDisableDeviceOrientation[]; |
38 #if defined(OS_ANDROID) | 38 #if defined(OS_ANDROID) |
39 CONTENT_EXPORT extern const char kEnableExperimentalWebGL[]; | 39 CONTENT_EXPORT extern const char kEnableExperimentalWebGL[]; |
40 #else | 40 #else |
41 CONTENT_EXPORT extern const char kDisableExperimentalWebGL[]; | 41 CONTENT_EXPORT extern const char kDisableExperimentalWebGL[]; |
42 #endif | 42 #endif |
43 CONTENT_EXPORT extern const char kBlacklistAcceleratedCompositing[]; | 43 CONTENT_EXPORT extern const char kBlacklistAcceleratedCompositing[]; |
44 CONTENT_EXPORT extern const char kBlacklistWebGL[]; | 44 CONTENT_EXPORT extern const char kBlacklistWebGL[]; |
45 extern const char kDisableFileSystem[]; | 45 extern const char kDisableFileSystem[]; |
46 CONTENT_EXPORT extern const char kDisableFlash3d[]; | 46 CONTENT_EXPORT extern const char kDisableFlash3d[]; |
47 extern const char kDisableFlashFullscreen3d[]; | |
48 CONTENT_EXPORT extern const char kDisableFlashStage3d[]; | 47 CONTENT_EXPORT extern const char kDisableFlashStage3d[]; |
49 CONTENT_EXPORT extern const char kDisableForceCompositingMode[]; | 48 CONTENT_EXPORT extern const char kDisableForceCompositingMode[]; |
50 extern const char kDisableGeolocation[]; | 49 extern const char kDisableGeolocation[]; |
51 CONTENT_EXPORT extern const char kUseGpuInTests[]; | 50 CONTENT_EXPORT extern const char kUseGpuInTests[]; |
52 extern const char kDisableGpu[]; | 51 extern const char kDisableGpu[]; |
53 CONTENT_EXPORT extern const char kDisableGLMultisampling[]; | 52 CONTENT_EXPORT extern const char kDisableGLMultisampling[]; |
54 CONTENT_EXPORT extern const char kDisableGpuProcessPrelaunch[]; | 53 CONTENT_EXPORT extern const char kDisableGpuProcessPrelaunch[]; |
55 extern const char kDisableGpuSandbox[]; | 54 extern const char kDisableGpuSandbox[]; |
56 extern const char kReduceGpuSandbox[]; | 55 extern const char kReduceGpuSandbox[]; |
57 extern const char kDisableGpuWatchdog[]; | 56 extern const char kDisableGpuWatchdog[]; |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 | 269 |
271 extern const char kEnableWebPInAcceptHeader[]; | 270 extern const char kEnableWebPInAcceptHeader[]; |
272 | 271 |
273 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; | 272 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; |
274 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[]; | 273 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[]; |
275 CONTENT_EXPORT extern const char kEnableWebGLDraftExtensions[]; | 274 CONTENT_EXPORT extern const char kEnableWebGLDraftExtensions[]; |
276 | 275 |
277 } // namespace switches | 276 } // namespace switches |
278 | 277 |
279 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 278 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |