| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 CONTENT_EXPORT extern const char kDisablePinch[]; | 72 CONTENT_EXPORT extern const char kDisablePinch[]; |
| 73 CONTENT_EXPORT extern const char kDisablePermissionsAPI[]; | 73 CONTENT_EXPORT extern const char kDisablePermissionsAPI[]; |
| 74 CONTENT_EXPORT extern const char kDisablePluginsDiscovery[]; | 74 CONTENT_EXPORT extern const char kDisablePluginsDiscovery[]; |
| 75 CONTENT_EXPORT extern const char kDisableReadingFromCanvas[]; | 75 CONTENT_EXPORT extern const char kDisableReadingFromCanvas[]; |
| 76 extern const char kDisableRemoteFonts[]; | 76 extern const char kDisableRemoteFonts[]; |
| 77 extern const char kDisableRendererAccessibility[]; | 77 extern const char kDisableRendererAccessibility[]; |
| 78 CONTENT_EXPORT extern const char kDisableRendererBackgrounding[]; | 78 CONTENT_EXPORT extern const char kDisableRendererBackgrounding[]; |
| 79 CONTENT_EXPORT extern const char kDisableSeccompFilterSandbox[]; | 79 CONTENT_EXPORT extern const char kDisableSeccompFilterSandbox[]; |
| 80 CONTENT_EXPORT extern const char kDisableSetuidSandbox[]; | 80 CONTENT_EXPORT extern const char kDisableSetuidSandbox[]; |
| 81 CONTENT_EXPORT extern const char kDisableSharedWorkers[]; | 81 CONTENT_EXPORT extern const char kDisableSharedWorkers[]; |
| 82 CONTENT_EXPORT extern const char kDisableSlimmingPaint[]; |
| 82 CONTENT_EXPORT extern const char kDisableSmoothScrolling[]; | 83 CONTENT_EXPORT extern const char kDisableSmoothScrolling[]; |
| 83 CONTENT_EXPORT extern const char kDisableSoftwareRasterizer[]; | 84 CONTENT_EXPORT extern const char kDisableSoftwareRasterizer[]; |
| 84 CONTENT_EXPORT extern const char kDisableSpeechAPI[]; | 85 CONTENT_EXPORT extern const char kDisableSpeechAPI[]; |
| 85 CONTENT_EXPORT extern const char kDisableSVG1DOM[]; | 86 CONTENT_EXPORT extern const char kDisableSVG1DOM[]; |
| 86 CONTENT_EXPORT extern const char kDisableTextBlobs[]; | 87 CONTENT_EXPORT extern const char kDisableTextBlobs[]; |
| 87 CONTENT_EXPORT extern const char kDisableThreadedCompositing[]; | 88 CONTENT_EXPORT extern const char kDisableThreadedCompositing[]; |
| 88 CONTENT_EXPORT extern const char kDisableThreadedScrolling[]; | 89 CONTENT_EXPORT extern const char kDisableThreadedScrolling[]; |
| 89 extern const char kDisableV8IdleTasks[]; | 90 extern const char kDisableV8IdleTasks[]; |
| 90 CONTENT_EXPORT extern const char kDisableWebSecurity[]; | 91 CONTENT_EXPORT extern const char kDisableWebSecurity[]; |
| 91 extern const char kDisableXSSAuditor[]; | 92 extern const char kDisableXSSAuditor[]; |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 #endif | 300 #endif |
| 300 | 301 |
| 301 CONTENT_EXPORT extern const char kEnableNpapiForTesting[]; | 302 CONTENT_EXPORT extern const char kEnableNpapiForTesting[]; |
| 302 | 303 |
| 303 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 304 // 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). | 305 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 305 | 306 |
| 306 } // namespace switches | 307 } // namespace switches |
| 307 | 308 |
| 308 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 309 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |