Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1461)

Unified Diff: Source/devtools/protocol.json

Issue 337973004: DevTools protocol: add emulateNetworkConditions parameters. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"]
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698