| 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 extern const char kEnableSSLCachedInfo[]; | 88 extern const char kEnableSSLCachedInfo[]; |
| 89 extern const char kEnableSandboxLogging[]; | 89 extern const char kEnableSandboxLogging[]; |
| 90 extern const char kEnableSeccompSandbox[]; | 90 extern const char kEnableSeccompSandbox[]; |
| 91 CONTENT_EXPORT extern const char kEnableStatsTable[]; | 91 CONTENT_EXPORT extern const char kEnableStatsTable[]; |
| 92 extern const char kEnableStrictSiteIsolation[]; | 92 extern const char kEnableStrictSiteIsolation[]; |
| 93 CONTENT_EXPORT extern const char kEnableThreadedCompositing[]; | 93 CONTENT_EXPORT extern const char kEnableThreadedCompositing[]; |
| 94 CONTENT_EXPORT extern const char kEnableTcpFastOpen[]; | 94 CONTENT_EXPORT extern const char kEnableTcpFastOpen[]; |
| 95 CONTENT_EXPORT extern const char kEnableTouchEvents[]; | 95 CONTENT_EXPORT extern const char kEnableTouchEvents[]; |
| 96 extern const char kEnableVideoFullscreen[]; | 96 extern const char kEnableVideoFullscreen[]; |
| 97 CONTENT_EXPORT extern const char kEnableVideoTrack[]; | 97 CONTENT_EXPORT extern const char kEnableVideoTrack[]; |
| 98 CONTENT_EXPORT extern const char kDisableWebIntents[]; | 98 CONTENT_EXPORT extern const char kEnableWebIntents[]; |
| 99 CONTENT_EXPORT extern const char kExperimentalLocationFeatures[]; | 99 CONTENT_EXPORT extern const char kExperimentalLocationFeatures[]; |
| 100 extern const char kExtraPluginDir[]; | 100 extern const char kExtraPluginDir[]; |
| 101 extern const char kForceFieldTestNameAndValue[]; | 101 extern const char kForceFieldTestNameAndValue[]; |
| 102 CONTENT_EXPORT extern const char kForceRendererAccessibility[]; | 102 CONTENT_EXPORT extern const char kForceRendererAccessibility[]; |
| 103 extern const char kGpuLauncher[]; | 103 extern const char kGpuLauncher[]; |
| 104 CONTENT_EXPORT extern const char kGpuProcess[]; | 104 CONTENT_EXPORT extern const char kGpuProcess[]; |
| 105 extern const char kGpuStartupDialog[]; | 105 extern const char kGpuStartupDialog[]; |
| 106 CONTENT_EXPORT extern const char kIgnoreGpuBlacklist[]; | 106 CONTENT_EXPORT extern const char kIgnoreGpuBlacklist[]; |
| 107 extern const char kInProcessGPU[]; | 107 extern const char kInProcessGPU[]; |
| 108 extern const char kInProcessPlugins[]; | 108 extern const char kInProcessPlugins[]; |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 | 181 |
| 182 #if !defined(OFFICIAL_BUILD) | 182 #if !defined(OFFICIAL_BUILD) |
| 183 CONTENT_EXPORT extern const char kRendererCheckFalseTest[]; | 183 CONTENT_EXPORT extern const char kRendererCheckFalseTest[]; |
| 184 #endif | 184 #endif |
| 185 | 185 |
| 186 extern const char kEnablePerTilePainting[]; | 186 extern const char kEnablePerTilePainting[]; |
| 187 | 187 |
| 188 } // namespace switches | 188 } // namespace switches |
| 189 | 189 |
| 190 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 190 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |