| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 CONTENT_EXPORT extern const char kDisableJava[]; | 60 CONTENT_EXPORT extern const char kDisableJava[]; |
| 61 CONTENT_EXPORT extern const char kDisableLCDText[]; | 61 CONTENT_EXPORT extern const char kDisableLCDText[]; |
| 62 CONTENT_EXPORT extern const char kDisablePrefixedEncryptedMedia[]; | 62 CONTENT_EXPORT extern const char kDisablePrefixedEncryptedMedia[]; |
| 63 extern const char kDisableKillAfterBadIPC[]; | 63 extern const char kDisableKillAfterBadIPC[]; |
| 64 CONTENT_EXPORT extern const char kDisableLocalStorage[]; | 64 CONTENT_EXPORT extern const char kDisableLocalStorage[]; |
| 65 CONTENT_EXPORT extern const char kDisableLogging[]; | 65 CONTENT_EXPORT extern const char kDisableLogging[]; |
| 66 CONTENT_EXPORT extern const char kDisableMediaSource[]; | 66 CONTENT_EXPORT extern const char kDisableMediaSource[]; |
| 67 CONTENT_EXPORT extern const char kDisableOneCopy[]; | 67 CONTENT_EXPORT extern const char kDisableOneCopy[]; |
| 68 extern const char kDisablePepper3d[]; | 68 extern const char kDisablePepper3d[]; |
| 69 CONTENT_EXPORT extern const char kDisablePinch[]; | 69 CONTENT_EXPORT extern const char kDisablePinch[]; |
| 70 CONTENT_EXPORT extern const char kDisablePlugins[]; | |
| 71 CONTENT_EXPORT extern const char kDisablePluginsDiscovery[]; | 70 CONTENT_EXPORT extern const char kDisablePluginsDiscovery[]; |
| 72 extern const char kDisableRemoteFonts[]; | 71 extern const char kDisableRemoteFonts[]; |
| 73 extern const char kDisableRendererAccessibility[]; | 72 extern const char kDisableRendererAccessibility[]; |
| 74 CONTENT_EXPORT extern const char kDisableSeccompFilterSandbox[]; | 73 CONTENT_EXPORT extern const char kDisableSeccompFilterSandbox[]; |
| 75 CONTENT_EXPORT extern const char kDisableSetuidSandbox[]; | 74 CONTENT_EXPORT extern const char kDisableSetuidSandbox[]; |
| 76 CONTENT_EXPORT extern const char kDisableSharedWorkers[]; | 75 CONTENT_EXPORT extern const char kDisableSharedWorkers[]; |
| 77 CONTENT_EXPORT extern const char kDisableSingleThreadProxyScheduler[]; | 76 CONTENT_EXPORT extern const char kDisableSingleThreadProxyScheduler[]; |
| 78 CONTENT_EXPORT extern const char kDisableSmoothScrolling[]; | 77 CONTENT_EXPORT extern const char kDisableSmoothScrolling[]; |
| 79 CONTENT_EXPORT extern const char kDisableSoftwareRasterizer[]; | 78 CONTENT_EXPORT extern const char kDisableSoftwareRasterizer[]; |
| 80 CONTENT_EXPORT extern const char kDisableSVG1DOM[]; | 79 CONTENT_EXPORT extern const char kDisableSVG1DOM[]; |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 #if defined(ENABLE_PLUGINS) | 293 #if defined(ENABLE_PLUGINS) |
| 295 CONTENT_EXPORT extern const char kEnablePluginPowerSaver[]; | 294 CONTENT_EXPORT extern const char kEnablePluginPowerSaver[]; |
| 296 #endif | 295 #endif |
| 297 | 296 |
| 298 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 297 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 299 // alphabetical order, or in one of the ifdefs (also in order in each section). | 298 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 300 | 299 |
| 301 } // namespace switches | 300 } // namespace switches |
| 302 | 301 |
| 303 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 302 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |