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

Side by Side Diff: Source/devtools/protocol.json

Issue 156623005: Add transfer size paramater to didFinishLoading [3/3] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed comments Created 6 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "version": { "major": "1", "minor": "1" }, 2 "version": { "major": "1", "minor": "1" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "hidden": true, 5 "hidden": true,
6 "types": [], 6 "types": [],
7 "commands": [ 7 "commands": [
8 { 8 {
9 "name": "enable", 9 "name": "enable",
10 "description": "Enables inspector domain notifications." 10 "description": "Enables inspector domain notifications."
(...skipping 987 matching lines...) Expand 10 before | Expand all | Expand 10 after
998 { "name": "headers", "$ref": "Headers", "description": "HTTP response headers." }, 998 { "name": "headers", "$ref": "Headers", "description": "HTTP response headers." },
999 { "name": "headersText", "type": "string", "optional": true, "description": "HTTP response headers text." }, 999 { "name": "headersText", "type": "string", "optional": true, "description": "HTTP response headers text." },
1000 { "name": "mimeType", "type": "string", "description": "Reso urce mimeType as determined by the browser." }, 1000 { "name": "mimeType", "type": "string", "description": "Reso urce mimeType as determined by the browser." },
1001 { "name": "requestHeaders", "$ref": "Headers", "optional": t rue, "description": "Refined HTTP request headers that were actually transmitted over the network." }, 1001 { "name": "requestHeaders", "$ref": "Headers", "optional": t rue, "description": "Refined HTTP request headers that were actually transmitted over the network." },
1002 { "name": "requestHeadersText", "type": "string", "optional" : true, "description": "HTTP request headers text." }, 1002 { "name": "requestHeadersText", "type": "string", "optional" : true, "description": "HTTP request headers text." },
1003 { "name": "connectionReused", "type": "boolean", "descriptio n": "Specifies whether physical connection was actually reused for this request. " }, 1003 { "name": "connectionReused", "type": "boolean", "descriptio n": "Specifies whether physical connection was actually reused for this request. " },
1004 { "name": "connectionId", "type": "number", "description": " Physical connection id that was actually used for this request." }, 1004 { "name": "connectionId", "type": "number", "description": " Physical connection id that was actually used for this request." },
1005 { "name": "remoteIPAddress", "type": "string", "optional": t rue, "hidden": true, "description": "Remote IP address." }, 1005 { "name": "remoteIPAddress", "type": "string", "optional": t rue, "hidden": true, "description": "Remote IP address." },
1006 { "name": "remotePort", "type": "integer", "optional": true, "hidden": true, "description": "Remote port."}, 1006 { "name": "remotePort", "type": "integer", "optional": true, "hidden": true, "description": "Remote port."},
1007 { "name": "fromDiskCache", "type": "boolean", "optional": tr ue, "description": "Specifies that the request was served from the disk cache." }, 1007 { "name": "fromDiskCache", "type": "boolean", "optional": tr ue, "description": "Specifies that the request was served from the disk cache." },
1008 { "name": "encodedDataLength", "type": "number", "optional": false, "description": "Total number of bytes received for this request so far." },
1008 { "name": "timing", "$ref": "ResourceTiming", "optional": tr ue, "description": "Timing information for the given request." } 1009 { "name": "timing", "$ref": "ResourceTiming", "optional": tr ue, "description": "Timing information for the given request." }
1009 ] 1010 ]
1010 }, 1011 },
1011 { 1012 {
1012 "id": "WebSocketRequest", 1013 "id": "WebSocketRequest",
1013 "type": "object", 1014 "type": "object",
1014 "description": "WebSocket request data.", 1015 "description": "WebSocket request data.",
1015 "hidden": true, 1016 "hidden": true,
1016 "properties": [ 1017 "properties": [
1017 { "name": "headers", "$ref": "Headers", "description": "HTTP response headers." } 1018 { "name": "headers", "$ref": "Headers", "description": "HTTP response headers." }
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
1192 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1193 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1193 { "name": "dataLength", "type": "integer", "description": "D ata chunk length." }, 1194 { "name": "dataLength", "type": "integer", "description": "D ata chunk length." },
1194 { "name": "encodedDataLength", "type": "integer", "descripti on": "Actual bytes received (might be less than dataLength for compressed encodi ngs)." } 1195 { "name": "encodedDataLength", "type": "integer", "descripti on": "Actual bytes received (might be less than dataLength for compressed encodi ngs)." }
1195 ] 1196 ]
1196 }, 1197 },
1197 { 1198 {
1198 "name": "loadingFinished", 1199 "name": "loadingFinished",
1199 "description": "Fired when HTTP request has finished loading.", 1200 "description": "Fired when HTTP request has finished loading.",
1200 "parameters": [ 1201 "parameters": [
1201 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1202 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1202 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." } 1203 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1204 { "name": "encodedDataLength", "type": "number", "descriptio n": "Total number of bytes received for this request." }
1203 ] 1205 ]
1204 }, 1206 },
1205 { 1207 {
1206 "name": "loadingFailed", 1208 "name": "loadingFailed",
1207 "description": "Fired when HTTP request has failed to load.", 1209 "description": "Fired when HTTP request has failed to load.",
1208 "parameters": [ 1210 "parameters": [
1209 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1211 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1210 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1212 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1211 { "name": "errorText", "type": "string", "description": "Use r friendly error message." }, 1213 { "name": "errorText", "type": "string", "description": "Use r friendly error message." },
1212 { "name": "canceled", "type": "boolean", "optional": true, " description": "True if loading was canceled." } 1214 { "name": "canceled", "type": "boolean", "optional": true, " description": "True if loading was canceled." }
(...skipping 2872 matching lines...) Expand 10 before | Expand all | Expand 10 after
4085 ], 4087 ],
4086 "handlers": ["browser", "frontend"] 4088 "handlers": ["browser", "frontend"]
4087 }, 4089 },
4088 { 4090 {
4089 "name": "tracingComplete", 4091 "name": "tracingComplete",
4090 "handlers": ["browser", "frontend"] 4092 "handlers": ["browser", "frontend"]
4091 } 4093 }
4092 ] 4094 ]
4093 }] 4095 }]
4094 } 4096 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/NetworkRequest.js ('k') | Source/web/tests/AssociatedURLLoaderTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698