| Index: Source/devtools/protocol.json
|
| diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json
|
| index 5d58d8953fd85dc66089ca9a33e27405734572a5..376915304c26597730ff927807f52d07647137a0 100644
|
| --- a/Source/devtools/protocol.json
|
| +++ b/Source/devtools/protocol.json
|
| @@ -1005,6 +1005,7 @@
|
| { "name": "remoteIPAddress", "type": "string", "optional": true, "hidden": true, "description": "Remote IP address." },
|
| { "name": "remotePort", "type": "integer", "optional": true, "hidden": true, "description": "Remote port."},
|
| { "name": "fromDiskCache", "type": "boolean", "optional": true, "description": "Specifies that the request was served from the disk cache." },
|
| + { "name": "encodedDataLength", "type": "number", "optional": false, "description": "Total number of bytes received for this request so far." },
|
| { "name": "timing", "$ref": "ResourceTiming", "optional": true, "description": "Timing information for the given request." }
|
| ]
|
| },
|
| @@ -1199,7 +1200,8 @@
|
| "description": "Fired when HTTP request has finished loading.",
|
| "parameters": [
|
| { "name": "requestId", "$ref": "RequestId", "description": "Request identifier." },
|
| - { "name": "timestamp", "$ref": "Timestamp", "description": "Timestamp." }
|
| + { "name": "timestamp", "$ref": "Timestamp", "description": "Timestamp." },
|
| + { "name": "encodedDataLength", "type": "number", "description": "Total number of bytes received for this request." }
|
| ]
|
| },
|
| {
|
|
|