| 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 28 matching lines...) Expand all Loading... |
| 39 CONTENT_EXPORT extern const char kDisableDeviceOrientation[]; | 39 CONTENT_EXPORT extern const char kDisableDeviceOrientation[]; |
| 40 #if defined(OS_ANDROID) | 40 #if defined(OS_ANDROID) |
| 41 CONTENT_EXPORT extern const char kEnableExperimentalWebGL[]; | 41 CONTENT_EXPORT extern const char kEnableExperimentalWebGL[]; |
| 42 #else | 42 #else |
| 43 CONTENT_EXPORT extern const char kDisableExperimentalWebGL[]; | 43 CONTENT_EXPORT extern const char kDisableExperimentalWebGL[]; |
| 44 #endif | 44 #endif |
| 45 CONTENT_EXPORT extern const char kBlacklistAcceleratedCompositing[]; | 45 CONTENT_EXPORT extern const char kBlacklistAcceleratedCompositing[]; |
| 46 CONTENT_EXPORT extern const char kBlacklistWebGL[]; | 46 CONTENT_EXPORT extern const char kBlacklistWebGL[]; |
| 47 extern const char kDisableFileSystem[]; | 47 extern const char kDisableFileSystem[]; |
| 48 CONTENT_EXPORT extern const char kDisableFlash3d[]; | 48 CONTENT_EXPORT extern const char kDisableFlash3d[]; |
| 49 extern const char kDisableFlashFullscreen3d[]; |
| 49 CONTENT_EXPORT extern const char kDisableFlashStage3d[]; | 50 CONTENT_EXPORT extern const char kDisableFlashStage3d[]; |
| 50 CONTENT_EXPORT extern const char kDisableForceCompositingMode[]; | 51 CONTENT_EXPORT extern const char kDisableForceCompositingMode[]; |
| 51 extern const char kDisableGeolocation[]; | 52 extern const char kDisableGeolocation[]; |
| 52 extern const char kDisableGpu[]; | 53 extern const char kDisableGpu[]; |
| 53 CONTENT_EXPORT extern const char kDisableGLMultisampling[]; | 54 CONTENT_EXPORT extern const char kDisableGLMultisampling[]; |
| 54 CONTENT_EXPORT extern const char kDisableGpuProcessPrelaunch[]; | 55 CONTENT_EXPORT extern const char kDisableGpuProcessPrelaunch[]; |
| 55 extern const char kDisableGpuSandbox[]; | 56 extern const char kDisableGpuSandbox[]; |
| 56 extern const char kReduceGpuSandbox[]; | 57 extern const char kReduceGpuSandbox[]; |
| 57 extern const char kEnableGpuSandbox[]; | 58 extern const char kEnableGpuSandbox[]; |
| 58 extern const char kDisableGpuWatchdog[]; | 59 extern const char kDisableGpuWatchdog[]; |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 | 233 |
| 233 #if defined(USE_AURA) | 234 #if defined(USE_AURA) |
| 234 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 235 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
| 235 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 236 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
| 236 CONTENT_EXPORT extern const char kTestCompositor[]; | 237 CONTENT_EXPORT extern const char kTestCompositor[]; |
| 237 #endif | 238 #endif |
| 238 | 239 |
| 239 } // namespace switches | 240 } // namespace switches |
| 240 | 241 |
| 241 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 242 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |