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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 CONTENT_EXPORT extern const char kStatsCollectionController[]; | 206 CONTENT_EXPORT extern const char kStatsCollectionController[]; |
207 CONTENT_EXPORT extern const char kTabCaptureDownscaleQuality[]; | 207 CONTENT_EXPORT extern const char kTabCaptureDownscaleQuality[]; |
208 CONTENT_EXPORT extern const char kTabCaptureUpscaleQuality[]; | 208 CONTENT_EXPORT extern const char kTabCaptureUpscaleQuality[]; |
209 CONTENT_EXPORT extern const char kTestingFixedHttpPort[]; | 209 CONTENT_EXPORT extern const char kTestingFixedHttpPort[]; |
210 CONTENT_EXPORT extern const char kTestingFixedHttpsPort[]; | 210 CONTENT_EXPORT extern const char kTestingFixedHttpsPort[]; |
211 CONTENT_EXPORT extern const char kTestType[]; | 211 CONTENT_EXPORT extern const char kTestType[]; |
212 CONTENT_EXPORT extern const char kTouchScrollingMode[]; | 212 CONTENT_EXPORT extern const char kTouchScrollingMode[]; |
213 CONTENT_EXPORT extern const char kTouchScrollingModeAsyncTouchmove[]; | 213 CONTENT_EXPORT extern const char kTouchScrollingModeAsyncTouchmove[]; |
214 CONTENT_EXPORT extern const char kTouchScrollingModeSyncTouchmove[]; | 214 CONTENT_EXPORT extern const char kTouchScrollingModeSyncTouchmove[]; |
215 CONTENT_EXPORT extern const char kTouchScrollingModeTouchcancel[]; | 215 CONTENT_EXPORT extern const char kTouchScrollingModeTouchcancel[]; |
| 216 CONTENT_EXPORT extern const char kTouchTextSelectionStrategy[]; |
| 217 CONTENT_EXPORT extern const char kTouchTextSelectionHalfDecay[]; |
| 218 CONTENT_EXPORT extern const char kTouchTextSelectionThreshold[]; |
| 219 |
216 CONTENT_EXPORT extern const char kTraceShutdown[]; | 220 CONTENT_EXPORT extern const char kTraceShutdown[]; |
217 extern const char kTraceShutdownFile[]; | 221 extern const char kTraceShutdownFile[]; |
218 extern const char kTraceStartup[]; | 222 extern const char kTraceStartup[]; |
219 extern const char kTraceStartupDuration[]; | 223 extern const char kTraceStartupDuration[]; |
220 extern const char kTraceStartupFile[]; | 224 extern const char kTraceStartupFile[]; |
221 extern const char kTraceUploadURL[]; | 225 extern const char kTraceUploadURL[]; |
222 CONTENT_EXPORT extern const char kUIPrioritizeInGpuProcess[]; | 226 CONTENT_EXPORT extern const char kUIPrioritizeInGpuProcess[]; |
223 CONTENT_EXPORT extern const char kUseDiscardableMemory[]; | 227 CONTENT_EXPORT extern const char kUseDiscardableMemory[]; |
224 CONTENT_EXPORT extern const char kUseFakeUIForMediaStream[]; | 228 CONTENT_EXPORT extern const char kUseFakeUIForMediaStream[]; |
225 CONTENT_EXPORT extern const char kEnableNativeGpuMemoryBuffers[]; | 229 CONTENT_EXPORT extern const char kEnableNativeGpuMemoryBuffers[]; |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 #if defined(ENABLE_PLUGINS) | 299 #if defined(ENABLE_PLUGINS) |
296 CONTENT_EXPORT extern const char kEnablePluginPowerSaver[]; | 300 CONTENT_EXPORT extern const char kEnablePluginPowerSaver[]; |
297 #endif | 301 #endif |
298 | 302 |
299 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 303 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
300 // alphabetical order, or in one of the ifdefs (also in order in each section). | 304 // alphabetical order, or in one of the ifdefs (also in order in each section). |
301 | 305 |
302 } // namespace switches | 306 } // namespace switches |
303 | 307 |
304 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 308 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |