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

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

Issue 142863003: Show IP address in DevTools. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed copy-paste + added field to detailed view 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
« no previous file with comments | « Source/devtools/front_end/RequestHeadersView.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 982 matching lines...) Expand 10 before | Expand all | Expand 10 after
993 { "name": "url", "type": "string", "description": "Response URL. This URL can be different from CachedResource.url in case of redirect." }, 993 { "name": "url", "type": "string", "description": "Response URL. This URL can be different from CachedResource.url in case of redirect." },
994 { "name": "status", "type": "number", "description": "HTTP r esponse status code." }, 994 { "name": "status", "type": "number", "description": "HTTP r esponse status code." },
995 { "name": "statusText", "type": "string", "description": "HT TP response status text." }, 995 { "name": "statusText", "type": "string", "description": "HT TP response status text." },
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." },
1004 { "name": "remotePort", "type": "integer", "optional": true, "hidden": true, "description": "Remote port."},
1003 { "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." },
1004 { "name": "timing", "$ref": "ResourceTiming", "optional": tr ue, "description": "Timing information for the given request." } 1006 { "name": "timing", "$ref": "ResourceTiming", "optional": tr ue, "description": "Timing information for the given request." }
1005 ] 1007 ]
1006 }, 1008 },
1007 { 1009 {
1008 "id": "WebSocketRequest", 1010 "id": "WebSocketRequest",
1009 "type": "object", 1011 "type": "object",
1010 "description": "WebSocket request data.", 1012 "description": "WebSocket request data.",
1011 "hidden": true, 1013 "hidden": true,
1012 "properties": [ 1014 "properties": [
(...skipping 3132 matching lines...) Expand 10 before | Expand all | Expand 10 after
4145 ], 4147 ],
4146 "handlers": ["browser", "frontend"] 4148 "handlers": ["browser", "frontend"]
4147 }, 4149 },
4148 { 4150 {
4149 "name": "tracingComplete", 4151 "name": "tracingComplete",
4150 "handlers": ["browser", "frontend"] 4152 "handlers": ["browser", "frontend"]
4151 } 4153 }
4152 ] 4154 ]
4153 }] 4155 }]
4154 } 4156 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/RequestHeadersView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698