| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 CONTENT_EXPORT extern const char kEnableThreadedCompositing[]; | 110 CONTENT_EXPORT extern const char kEnableThreadedCompositing[]; |
| 111 CONTENT_EXPORT extern const char kDisableThreadedCompositing[]; | 111 CONTENT_EXPORT extern const char kDisableThreadedCompositing[]; |
| 112 CONTENT_EXPORT extern const char kEnableTcpFastOpen[]; | 112 CONTENT_EXPORT extern const char kEnableTcpFastOpen[]; |
| 113 CONTENT_EXPORT extern const char kEnableTouchEvents[]; | 113 CONTENT_EXPORT extern const char kEnableTouchEvents[]; |
| 114 CONTENT_EXPORT extern const char kEnableVideoTrack[]; | 114 CONTENT_EXPORT extern const char kEnableVideoTrack[]; |
| 115 extern const char kEnableViewport[]; | 115 extern const char kEnableViewport[]; |
| 116 CONTENT_EXPORT extern const char kDisableWebIntents[]; | 116 CONTENT_EXPORT extern const char kDisableWebIntents[]; |
| 117 CONTENT_EXPORT extern const char kExperimentalLocationFeatures[]; | 117 CONTENT_EXPORT extern const char kExperimentalLocationFeatures[]; |
| 118 extern const char kExtraPluginDir[]; | 118 extern const char kExtraPluginDir[]; |
| 119 CONTENT_EXPORT extern const char kForceCompositingMode[]; | 119 CONTENT_EXPORT extern const char kForceCompositingMode[]; |
| 120 extern const char kForceFieldTestNameAndValue[]; | 120 extern const char kForceFieldTrials[]; |
| 121 CONTENT_EXPORT extern const char kForceRendererAccessibility[]; | 121 CONTENT_EXPORT extern const char kForceRendererAccessibility[]; |
| 122 extern const char kGpuLauncher[]; | 122 extern const char kGpuLauncher[]; |
| 123 CONTENT_EXPORT extern const char kGpuProcess[]; | 123 CONTENT_EXPORT extern const char kGpuProcess[]; |
| 124 extern const char kGpuStartupDialog[]; | 124 extern const char kGpuStartupDialog[]; |
| 125 extern const char kInProcessGPU[]; | 125 extern const char kInProcessGPU[]; |
| 126 extern const char kInProcessPlugins[]; | 126 extern const char kInProcessPlugins[]; |
| 127 CONTENT_EXPORT extern const char kInProcessWebGL[]; | 127 CONTENT_EXPORT extern const char kInProcessWebGL[]; |
| 128 CONTENT_EXPORT extern const char kInvertWebContent[]; | 128 CONTENT_EXPORT extern const char kInvertWebContent[]; |
| 129 CONTENT_EXPORT extern const char kJavaScriptFlags[]; | 129 CONTENT_EXPORT extern const char kJavaScriptFlags[]; |
| 130 extern const char kLoadPlugin[]; | 130 extern const char kLoadPlugin[]; |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 | 208 |
| 209 #if defined(USE_AURA) | 209 #if defined(USE_AURA) |
| 210 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 210 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
| 211 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 211 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
| 212 CONTENT_EXPORT extern const char kTestCompositor[]; | 212 CONTENT_EXPORT extern const char kTestCompositor[]; |
| 213 #endif | 213 #endif |
| 214 | 214 |
| 215 } // namespace switches | 215 } // namespace switches |
| 216 | 216 |
| 217 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 217 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |