| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 extern const char kDisableUnprefixedMediaSource[]; | 104 extern const char kDisableUnprefixedMediaSource[]; |
| 105 CONTENT_EXPORT extern const char kDisableWebSecurity[]; | 105 CONTENT_EXPORT extern const char kDisableWebSecurity[]; |
| 106 extern const char kDisableXSLT[]; | 106 extern const char kDisableXSLT[]; |
| 107 extern const char kDisableXSSAuditor[]; | 107 extern const char kDisableXSSAuditor[]; |
| 108 CONTENT_EXPORT extern const char kDomAutomationController[]; | 108 CONTENT_EXPORT extern const char kDomAutomationController[]; |
| 109 CONTENT_EXPORT extern const char kEnableAcceleratedFilters[]; | 109 CONTENT_EXPORT extern const char kEnableAcceleratedFilters[]; |
| 110 CONTENT_EXPORT extern const char kEnableAcceleratedFixedRootBackground[]; | 110 CONTENT_EXPORT extern const char kEnableAcceleratedFixedRootBackground[]; |
| 111 extern const char kEnableAcceleratedOverflowScroll[]; | 111 extern const char kEnableAcceleratedOverflowScroll[]; |
| 112 extern const char kEnableAcceleratedScrollableFrames[]; | 112 extern const char kEnableAcceleratedScrollableFrames[]; |
| 113 extern const char kEnableAccessibilityLogging[]; | 113 extern const char kEnableAccessibilityLogging[]; |
| 114 extern const char kEnableAudibleNotifications[]; | |
| 115 CONTENT_EXPORT extern const char kEnableBeginFrameScheduling[]; | 114 CONTENT_EXPORT extern const char kEnableBeginFrameScheduling[]; |
| 116 CONTENT_EXPORT extern const char kEnableBrowserPluginForAllViewTypes[]; | 115 CONTENT_EXPORT extern const char kEnableBrowserPluginForAllViewTypes[]; |
| 117 CONTENT_EXPORT extern const char kEnableBrowserPluginDragDrop[]; | 116 CONTENT_EXPORT extern const char kEnableBrowserPluginDragDrop[]; |
| 118 extern const char kEnableCompositedScrollingForFrames[]; | 117 extern const char kEnableCompositedScrollingForFrames[]; |
| 119 CONTENT_EXPORT extern const char kEnableCompositingForFixedPosition[]; | 118 CONTENT_EXPORT extern const char kEnableCompositingForFixedPosition[]; |
| 120 CONTENT_EXPORT extern const char kEnableCompositingForTransition[]; | 119 CONTENT_EXPORT extern const char kEnableCompositingForTransition[]; |
| 121 CONTENT_EXPORT extern const char kEnableDeferredImageDecoding[]; | 120 CONTENT_EXPORT extern const char kEnableDeferredImageDecoding[]; |
| 122 CONTENT_EXPORT extern const char kEnableDeadlineScheduling[]; | 121 CONTENT_EXPORT extern const char kEnableDeadlineScheduling[]; |
| 123 CONTENT_EXPORT extern const char kEnableDelegatedRenderer[]; | 122 CONTENT_EXPORT extern const char kEnableDelegatedRenderer[]; |
| 124 CONTENT_EXPORT extern const char kEnableDownloadResumption[]; | 123 CONTENT_EXPORT extern const char kEnableDownloadResumption[]; |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 #if defined(USE_AURA) | 298 #if defined(USE_AURA) |
| 300 CONTENT_EXPORT extern const char kTestCompositor[]; | 299 CONTENT_EXPORT extern const char kTestCompositor[]; |
| 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 |