Index: Source/devtools/protocol.json |
diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json |
index 0507f61404d992fadcbf0a7defab17c6b2f492e1..0e0c9f92d0c947894ecaa5f1a103aeaf14e1b7d4 100644 |
--- a/Source/devtools/protocol.json |
+++ b/Source/devtools/protocol.json |
@@ -1165,8 +1165,11 @@ |
"description": "Activates emulation of network conditions.", |
"parameters": [ |
{ "name": "domains", "type": "array", "items": { "type": "string" }, "description": "List of affected domains." }, |
- { "name": "maximalThroughput", "type": "number", "description": "Maximal aggregated network throughput." }, |
- { "name": "offline", "type": "boolean", "description": "True to emulate internet disconnection." } |
+ { "name": "maximalThroughput", "type": "number", "description": "Deprecated." }, |
dgozman
2014/06/16 10:23:52
Why not just drop this one, changing the usages ri
eustas
2014/06/16 13:04:43
Because chromium relies on generated constant...
|
+ { "name": "offline", "type": "boolean", "description": "True to emulate internet disconnection." }, |
+ { "name": "latency", "type": "number", "description": "Additional latency (ms)." }, |
+ { "name": "downloadThroughput", "type": "number", "description": "Maximal aggregated download throughput." }, |
+ { "name": "uploadThroughput", "type": "number", "description": "Maximal aggregated upload throughput." } |
], |
"hidden": true, |
"handlers": ["browser"] |