| 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 extern const char kDisableDesktopNotifications[]; | 40 extern const char kDisableDesktopNotifications[]; |
| 41 CONTENT_EXPORT extern const char kDisableDeviceOrientation[]; | 41 CONTENT_EXPORT extern const char kDisableDeviceOrientation[]; |
| 42 CONTENT_EXPORT extern const char kDisableExperimentalWebGL[]; | 42 CONTENT_EXPORT extern const char kDisableExperimentalWebGL[]; |
| 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 CONTENT_EXPORT extern const char kBrowserPlugin[]; | 45 CONTENT_EXPORT extern const char kBrowserPlugin[]; |
| 46 CONTENT_EXPORT extern const char kBrowserPluginEnabled[]; | 46 CONTENT_EXPORT extern const char kBrowserPluginEnabled[]; |
| 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 CONTENT_EXPORT extern const char kDisableFlashStage3d[]; | 49 CONTENT_EXPORT extern const char kDisableFlashStage3d[]; |
| 50 CONTENT_EXPORT extern const char kDisableForceCompositingMode[]; |
| 50 extern const char kDisableGeolocation[]; | 51 extern const char kDisableGeolocation[]; |
| 51 extern const char kDisableGpu[]; | 52 extern const char kDisableGpu[]; |
| 52 CONTENT_EXPORT extern const char kDisableGLMultisampling[]; | 53 CONTENT_EXPORT extern const char kDisableGLMultisampling[]; |
| 53 CONTENT_EXPORT extern const char kDisableGpuProcessPrelaunch[]; | 54 CONTENT_EXPORT extern const char kDisableGpuProcessPrelaunch[]; |
| 54 extern const char kDisableGpuSandbox[]; | 55 extern const char kDisableGpuSandbox[]; |
| 55 extern const char kReduceGpuSandbox[]; | 56 extern const char kReduceGpuSandbox[]; |
| 56 extern const char kEnableGpuSandbox[]; | 57 extern const char kEnableGpuSandbox[]; |
| 57 extern const char kDisableGpuWatchdog[]; | 58 extern const char kDisableGpuWatchdog[]; |
| 58 CONTENT_EXPORT extern const char kDisableHangMonitor[]; | 59 CONTENT_EXPORT extern const char kDisableHangMonitor[]; |
| 59 extern const char kDisableImageTransportSurface[]; | 60 extern const char kDisableImageTransportSurface[]; |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 | 212 |
| 212 #if defined(USE_AURA) | 213 #if defined(USE_AURA) |
| 213 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 214 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
| 214 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 215 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
| 215 CONTENT_EXPORT extern const char kTestCompositor[]; | 216 CONTENT_EXPORT extern const char kTestCompositor[]; |
| 216 #endif | 217 #endif |
| 217 | 218 |
| 218 } // namespace switches | 219 } // namespace switches |
| 219 | 220 |
| 220 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 221 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |