| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 CONTENT_EXPORT extern const char kEnableAggressiveDOMStorageFlushing[]; | 108 CONTENT_EXPORT extern const char kEnableAggressiveDOMStorageFlushing[]; |
| 109 CONTENT_EXPORT extern const char kEnablePreferCompositingToLCDText[]; | 109 CONTENT_EXPORT extern const char kEnablePreferCompositingToLCDText[]; |
| 110 CONTENT_EXPORT extern const char kEnableBlinkFeatures[]; | 110 CONTENT_EXPORT extern const char kEnableBlinkFeatures[]; |
| 111 CONTENT_EXPORT extern const char kEnableBrowserSideNavigation[]; | 111 CONTENT_EXPORT extern const char kEnableBrowserSideNavigation[]; |
| 112 CONTENT_EXPORT extern const char kEnableDisplayList2dCanvas[]; | 112 CONTENT_EXPORT extern const char kEnableDisplayList2dCanvas[]; |
| 113 CONTENT_EXPORT extern const char kEnableCanvas2dDynamicRenderingModeSwitching[]; | 113 CONTENT_EXPORT extern const char kEnableCanvas2dDynamicRenderingModeSwitching[]; |
| 114 CONTENT_EXPORT extern const char kEnableDistanceFieldText[]; | 114 CONTENT_EXPORT extern const char kEnableDistanceFieldText[]; |
| 115 CONTENT_EXPORT extern const char kEnableExperimentalCanvasFeatures[]; | 115 CONTENT_EXPORT extern const char kEnableExperimentalCanvasFeatures[]; |
| 116 CONTENT_EXPORT extern const char kEnableExperimentalWebPlatformFeatures[]; | 116 CONTENT_EXPORT extern const char kEnableExperimentalWebPlatformFeatures[]; |
| 117 CONTENT_EXPORT extern const char kEnableFeatures[]; | 117 CONTENT_EXPORT extern const char kEnableFeatures[]; |
| 118 CONTENT_EXPORT extern const char kEnableAsmWasm[]; | |
| 119 CONTENT_EXPORT extern const char kEnableWasm[]; | |
| 120 CONTENT_EXPORT extern const char kEnableWebBluetooth[]; | 118 CONTENT_EXPORT extern const char kEnableWebBluetooth[]; |
| 121 CONTENT_EXPORT extern const char kEnableWebFontsInterventionV2[]; | 119 CONTENT_EXPORT extern const char kEnableWebFontsInterventionV2[]; |
| 122 CONTENT_EXPORT extern const char | 120 CONTENT_EXPORT extern const char |
| 123 kEnableWebFontsInterventionV2SwitchValueEnabledWith2G[]; | 121 kEnableWebFontsInterventionV2SwitchValueEnabledWith2G[]; |
| 124 CONTENT_EXPORT extern const char | 122 CONTENT_EXPORT extern const char |
| 125 kEnableWebFontsInterventionV2SwitchValueEnabledWith3G[]; | 123 kEnableWebFontsInterventionV2SwitchValueEnabledWith3G[]; |
| 126 CONTENT_EXPORT extern const char | 124 CONTENT_EXPORT extern const char |
| 127 kEnableWebFontsInterventionV2SwitchValueEnabledWithSlow2G[]; | 125 kEnableWebFontsInterventionV2SwitchValueEnabledWithSlow2G[]; |
| 128 CONTENT_EXPORT extern const char | 126 CONTENT_EXPORT extern const char |
| 129 kEnableWebFontsInterventionV2SwitchValueDisabled[]; | 127 kEnableWebFontsInterventionV2SwitchValueDisabled[]; |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 extern const char kIpcDumpDirectory[]; | 320 extern const char kIpcDumpDirectory[]; |
| 323 extern const char kIpcFuzzerTestcase[]; | 321 extern const char kIpcFuzzerTestcase[]; |
| 324 #endif | 322 #endif |
| 325 | 323 |
| 326 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 324 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 327 // alphabetical order, or in one of the ifdefs (also in order in each section). | 325 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 328 | 326 |
| 329 } // namespace switches | 327 } // namespace switches |
| 330 | 328 |
| 331 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 329 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |