Commit 876949bc authored by eustas@chromium.org's avatar eustas@chromium.org

DevTools protocol: add emulateNetworkConditions parameters.

BUG=245436

Review URL: https://codereview.chromium.org/337973004

git-svn-id: svn://svn.chromium.org/blink/trunk@176211 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent adb257f8
......@@ -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." },
{ "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"]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment