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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 CONTENT_EXPORT extern const char kDisableFixedPositionCreatesStackingContext[]; | 59 CONTENT_EXPORT extern const char kDisableFixedPositionCreatesStackingContext[]; |
60 CONTENT_EXPORT extern const char kDisableFlash3d[]; | 60 CONTENT_EXPORT extern const char kDisableFlash3d[]; |
61 CONTENT_EXPORT extern const char kDisableFlashStage3d[]; | 61 CONTENT_EXPORT extern const char kDisableFlashStage3d[]; |
62 CONTENT_EXPORT extern const char kDisableForceCompositingMode[]; | 62 CONTENT_EXPORT extern const char kDisableForceCompositingMode[]; |
63 CONTENT_EXPORT extern const char kDisableGestureDebounce[]; | 63 CONTENT_EXPORT extern const char kDisableGestureDebounce[]; |
64 CONTENT_EXPORT extern const char kDisableGestureTapHighlight[]; | 64 CONTENT_EXPORT extern const char kDisableGestureTapHighlight[]; |
65 CONTENT_EXPORT extern const char kDisableGLMultisampling[]; | 65 CONTENT_EXPORT extern const char kDisableGLMultisampling[]; |
66 CONTENT_EXPORT extern const char kDisableGpu[]; | 66 CONTENT_EXPORT extern const char kDisableGpu[]; |
67 CONTENT_EXPORT extern const char kDisableGpuCompositing[]; | 67 CONTENT_EXPORT extern const char kDisableGpuCompositing[]; |
68 extern const char kDisableGpuProcessCrashLimit[]; | 68 extern const char kDisableGpuProcessCrashLimit[]; |
69 CONTENT_EXPORT extern const char kDisableGpuProcessPrelaunch[]; | |
70 CONTENT_EXPORT extern const char kDisableGpuRasterization[]; | 69 CONTENT_EXPORT extern const char kDisableGpuRasterization[]; |
71 CONTENT_EXPORT extern const char kDisableGpuSandbox[]; | 70 CONTENT_EXPORT extern const char kDisableGpuSandbox[]; |
72 CONTENT_EXPORT extern const char kDisableGpuWatchdog[]; | 71 CONTENT_EXPORT extern const char kDisableGpuWatchdog[]; |
73 CONTENT_EXPORT extern const char kDisableLowResTiling[]; | 72 CONTENT_EXPORT extern const char kDisableLowResTiling[]; |
74 CONTENT_EXPORT extern const char kDisableHangMonitor[]; | 73 CONTENT_EXPORT extern const char kDisableHangMonitor[]; |
75 extern const char kDisableHistogramCustomizer[]; | 74 extern const char kDisableHistogramCustomizer[]; |
76 CONTENT_EXPORT extern const char kDisableImplSidePainting[]; | 75 CONTENT_EXPORT extern const char kDisableImplSidePainting[]; |
77 CONTENT_EXPORT extern const char kDisableJava[]; | 76 CONTENT_EXPORT extern const char kDisableJava[]; |
78 CONTENT_EXPORT extern const char kDisableJavaScript[]; | 77 CONTENT_EXPORT extern const char kDisableJavaScript[]; |
79 CONTENT_EXPORT extern const char kDisableLCDText[]; | 78 CONTENT_EXPORT extern const char kDisableLCDText[]; |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 #if defined(OS_POSIX) | 315 #if defined(OS_POSIX) |
317 extern const char kChildCleanExit[]; | 316 extern const char kChildCleanExit[]; |
318 #endif | 317 #endif |
319 | 318 |
320 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 319 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
321 // alphabetical order, or in one of the ifdefs (also in order in each section). | 320 // alphabetical order, or in one of the ifdefs (also in order in each section). |
322 | 321 |
323 } // namespace switches | 322 } // namespace switches |
324 | 323 |
325 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 324 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |