| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 CONTENT_EXPORT extern const char kDisableSingleThreadProxyScheduler[]; | 81 CONTENT_EXPORT extern const char kDisableSingleThreadProxyScheduler[]; |
| 82 CONTENT_EXPORT extern const char kDisableSmoothScrolling[]; | 82 CONTENT_EXPORT extern const char kDisableSmoothScrolling[]; |
| 83 CONTENT_EXPORT extern const char kDisableSoftwareRasterizer[]; | 83 CONTENT_EXPORT extern const char kDisableSoftwareRasterizer[]; |
| 84 CONTENT_EXPORT extern const char kDisableSVG1DOM[]; | 84 CONTENT_EXPORT extern const char kDisableSVG1DOM[]; |
| 85 CONTENT_EXPORT extern const char kDisableTextBlobs[]; | 85 CONTENT_EXPORT extern const char kDisableTextBlobs[]; |
| 86 CONTENT_EXPORT extern const char kDisableThreadedCompositing[]; | 86 CONTENT_EXPORT extern const char kDisableThreadedCompositing[]; |
| 87 CONTENT_EXPORT extern const char kDisableThreadedScrolling[]; | 87 CONTENT_EXPORT extern const char kDisableThreadedScrolling[]; |
| 88 extern const char kDisableV8IdleNotificationAfterCommit[]; | 88 extern const char kDisableV8IdleNotificationAfterCommit[]; |
| 89 CONTENT_EXPORT extern const char kDisableWebSecurity[]; | 89 CONTENT_EXPORT extern const char kDisableWebSecurity[]; |
| 90 extern const char kDisableXSLT[]; | 90 extern const char kDisableXSLT[]; |
| 91 extern const char kDisableXSSAuditor[]; | |
| 92 CONTENT_EXPORT extern const char kDomAutomationController[]; | 91 CONTENT_EXPORT extern const char kDomAutomationController[]; |
| 93 extern const char kEnable2dCanvasClipAntialiasing[]; | 92 extern const char kEnable2dCanvasClipAntialiasing[]; |
| 94 CONTENT_EXPORT extern const char kEnableBleedingEdgeRenderingFastPaths[]; | 93 CONTENT_EXPORT extern const char kEnableBleedingEdgeRenderingFastPaths[]; |
| 95 CONTENT_EXPORT extern const char kEnableCredentialManagerAPI[]; | 94 CONTENT_EXPORT extern const char kEnableCredentialManagerAPI[]; |
| 96 CONTENT_EXPORT extern const char kEnableBeginFrameScheduling[]; | 95 CONTENT_EXPORT extern const char kEnableBeginFrameScheduling[]; |
| 97 CONTENT_EXPORT extern const char kEnablePreferCompositingToLCDText[]; | 96 CONTENT_EXPORT extern const char kEnablePreferCompositingToLCDText[]; |
| 98 CONTENT_EXPORT extern const char kEnableBrowserSideNavigation[]; | 97 CONTENT_EXPORT extern const char kEnableBrowserSideNavigation[]; |
| 99 CONTENT_EXPORT extern const char kEnableDeferredImageDecoding[]; | 98 CONTENT_EXPORT extern const char kEnableDeferredImageDecoding[]; |
| 100 CONTENT_EXPORT extern const char kEnableDelegatedRenderer[]; | 99 CONTENT_EXPORT extern const char kEnableDelegatedRenderer[]; |
| 101 CONTENT_EXPORT extern const char kEnableDisplayList2dCanvas[]; | 100 CONTENT_EXPORT extern const char kEnableDisplayList2dCanvas[]; |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 #if defined(ENABLE_PLUGINS) | 298 #if defined(ENABLE_PLUGINS) |
| 300 CONTENT_EXPORT extern const char kEnablePluginPowerSaver[]; | 299 CONTENT_EXPORT extern const char kEnablePluginPowerSaver[]; |
| 301 #endif | 300 #endif |
| 302 | 301 |
| 303 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 302 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 304 // alphabetical order, or in one of the ifdefs (also in order in each section). | 303 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 305 | 304 |
| 306 } // namespace switches | 305 } // namespace switches |
| 307 | 306 |
| 308 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 307 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |