Index: Source/devtools/protocol.json |
diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json |
index 444ec30ba411e0038cd8c64aa96c4add8679666f..7833eddb743f278b264e0c897cf6fcfe946503a0 100644 |
--- a/Source/devtools/protocol.json |
+++ b/Source/devtools/protocol.json |
@@ -4518,7 +4518,10 @@ |
{ "name": "yOverscroll", "type": "integer", "optional": true, "description": "The number of additional pixels to scroll back along the Y axis, in addition to the given distance." }, |
{ "name": "preventFling", "type": "boolean", "optional": true, "description": "Prevent fling (default: true)." }, |
{ "name": "speed", "type": "integer", "optional": true, "description": "Swipe speed in pixels per second (default: 800)." }, |
- { "name": "gestureSourceType", "$ref": "GestureSourceType", "optional": true, "description": "Which type of input events to be generated (default: 'default', which queries the platform for the preferred input type)." } |
+ { "name": "gestureSourceType", "$ref": "GestureSourceType", "optional": true, "description": "Which type of input events to be generated (default: 'default', which queries the platform for the preferred input type)." }, |
+ { "name": "repeatCount", "type": "integer", "optional": true, "description": "The number of times to repeat the gesture (default: 0)." }, |
Sami
2015/08/17 16:40:42
Should the default be 1? I would understand this t
pfeldman
2015/08/17 17:46:30
I'd just say default is no repeat.
alex clarke (OOO till 29th)
2015/08/18 09:50:08
Done.
|
+ { "name": "repeatDelayMs", "type": "integer", "optional": true, "description": "The number of milliseconds delay between each repeat. (default: 250)." }, |
+ { "name": "interactionMarkerName", "type": "string", "optional": true, "description": "The name of the interaction markers to generate, if not empty (default: \"\")." } |
], |
"description": "Synthesizes a scroll gesture over a time period by issuing appropriate touch events.", |
"hidden": true, |