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

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: 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 985 matching lines...) Expand 10 before | Expand all | Expand 10 after
996 { "name": "headers", "$ref": "Headers", "description": "HTTP response headers." }, 996 { "name": "headers", "$ref": "Headers", "description": "HTTP response headers." },
997 { "name": "headersText", "type": "string", "optional": true, "description": "HTTP response headers text." }, 997 { "name": "headersText", "type": "string", "optional": true, "description": "HTTP response headers text." },
998 { "name": "mimeType", "type": "string", "description": "Reso urce mimeType as determined by the browser." }, 998 { "name": "mimeType", "type": "string", "description": "Reso urce mimeType as determined by the browser." },
999 { "name": "requestHeaders", "$ref": "Headers", "optional": t rue, "description": "Refined HTTP request headers that were actually transmitted over the network." }, 999 { "name": "requestHeaders", "$ref": "Headers", "optional": t rue, "description": "Refined HTTP request headers that were actually transmitted over the network." },
1000 { "name": "requestHeadersText", "type": "string", "optional" : true, "description": "HTTP request headers text." }, 1000 { "name": "requestHeadersText", "type": "string", "optional" : true, "description": "HTTP request headers text." },
1001 { "name": "connectionReused", "type": "boolean", "descriptio n": "Specifies whether physical connection was actually reused for this request. " }, 1001 { "name": "connectionReused", "type": "boolean", "descriptio n": "Specifies whether physical connection was actually reused for this request. " },
1002 { "name": "connectionId", "type": "number", "description": " Physical connection id that was actually used for this request." }, 1002 { "name": "connectionId", "type": "number", "description": " Physical connection id that was actually used for this request." },
1003 { "name": "remoteIPAddress", "type": "string", "optional": t rue, "hidden": true, "description": "Remote IP address." }, 1003 { "name": "remoteIPAddress", "type": "string", "optional": t rue, "hidden": true, "description": "Remote IP address." },
1004 { "name": "remotePort", "type": "integer", "optional": true, "hidden": true, "description": "Remote port."}, 1004 { "name": "remotePort", "type": "integer", "optional": true, "hidden": true, "description": "Remote port."},
1005 { "name": "fromDiskCache", "type": "boolean", "optional": tr ue, "description": "Specifies that the request was served from the disk cache." }, 1005 { "name": "fromDiskCache", "type": "boolean", "optional": tr ue, "description": "Specifies that the request was served from the disk cache." },
1006 { "name": "encodedDataLength", "type": "number", "optional": false, "description": "Total number of bytes received for this request." },
vsevik 2014/02/07 09:37:08 ...so far.
eustas 2014/02/10 12:36:02 Done.
1006 { "name": "timing", "$ref": "ResourceTiming", "optional": tr ue, "description": "Timing information for the given request." } 1007 { "name": "timing", "$ref": "ResourceTiming", "optional": tr ue, "description": "Timing information for the given request." }
1007 ] 1008 ]
1008 }, 1009 },
1009 { 1010 {
1010 "id": "WebSocketRequest", 1011 "id": "WebSocketRequest",
1011 "type": "object", 1012 "type": "object",
1012 "description": "WebSocket request data.", 1013 "description": "WebSocket request data.",
1013 "hidden": true, 1014 "hidden": true,
1014 "properties": [ 1015 "properties": [
1015 { "name": "headers", "$ref": "Headers", "description": "HTTP response headers." } 1016 { "name": "headers", "$ref": "Headers", "description": "HTTP response headers." }
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
1182 { "name": "response", "$ref": "Response", "description": "Re sponse data." } 1183 { "name": "response", "$ref": "Response", "description": "Re sponse data." }
1183 ] 1184 ]
1184 }, 1185 },
1185 { 1186 {
1186 "name": "dataReceived", 1187 "name": "dataReceived",
1187 "description": "Fired when data chunk was received over the netw ork.", 1188 "description": "Fired when data chunk was received over the netw ork.",
1188 "parameters": [ 1189 "parameters": [
1189 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1190 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1190 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1191 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1191 { "name": "dataLength", "type": "integer", "description": "D ata chunk length." }, 1192 { "name": "dataLength", "type": "integer", "description": "D ata chunk length." },
1192 { "name": "encodedDataLength", "type": "integer", "descripti on": "Actual bytes received (might be less than dataLength for compressed encodi ngs)." } 1193 { "name": "encodedDataLength", "type": "integer", "descripti on": "Total number of bytes received for this request." }
vsevik 2014/02/07 09:37:08 not total
eustas 2014/02/10 12:36:02 Done.
1193 ] 1194 ]
1194 }, 1195 },
1195 { 1196 {
1196 "name": "loadingFinished", 1197 "name": "loadingFinished",
1197 "description": "Fired when HTTP request has finished loading.", 1198 "description": "Fired when HTTP request has finished loading.",
1198 "parameters": [ 1199 "parameters": [
1199 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1200 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1200 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." } 1201 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1202 { "name": "encodedDataLength", "type": "number", "descriptio n": "Total number of bytes received for this request." }
1201 ] 1203 ]
1202 }, 1204 },
1203 { 1205 {
1204 "name": "loadingFailed", 1206 "name": "loadingFailed",
1205 "description": "Fired when HTTP request has failed to load.", 1207 "description": "Fired when HTTP request has failed to load.",
1206 "parameters": [ 1208 "parameters": [
1207 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1209 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1208 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1210 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1209 { "name": "errorText", "type": "string", "description": "Use r friendly error message." }, 1211 { "name": "errorText", "type": "string", "description": "Use r friendly error message." },
1210 { "name": "canceled", "type": "boolean", "optional": true, " description": "True if loading was canceled." } 1212 { "name": "canceled", "type": "boolean", "optional": true, " description": "True if loading was canceled." }
(...skipping 2853 matching lines...) Expand 10 before | Expand all | Expand 10 after
4064 ], 4066 ],
4065 "handlers": ["browser", "frontend"] 4067 "handlers": ["browser", "frontend"]
4066 }, 4068 },
4067 { 4069 {
4068 "name": "tracingComplete", 4070 "name": "tracingComplete",
4069 "handlers": ["browser", "frontend"] 4071 "handlers": ["browser", "frontend"]
4070 } 4072 }
4071 ] 4073 ]
4072 }] 4074 }]
4073 } 4075 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698