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

Side by Side Diff: third_party/WebKit/Source/core/inspector/browser_protocol.json

Issue 2649923007: Revert of Show service worker navigation preload requests in DevTools Network tab (Closed)
Patch Set: Created 3 years, 11 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
OLDNEW
1 { 1 {
2 "version": { "major": "1", "minor": "2" }, 2 "version": { "major": "1", "minor": "2" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "experimental": true, 5 "experimental": 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 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after
1103 { "name": "type", "$ref": "Page.ResourceType", "description" : "Type of this resource." }, 1103 { "name": "type", "$ref": "Page.ResourceType", "description" : "Type of this resource." },
1104 { "name": "response", "$ref": "Response", "optional": true, "description": "Cached response data." }, 1104 { "name": "response", "$ref": "Response", "optional": true, "description": "Cached response data." },
1105 { "name": "bodySize", "type": "number", "description": "Cach ed response body size." } 1105 { "name": "bodySize", "type": "number", "description": "Cach ed response body size." }
1106 ] 1106 ]
1107 }, 1107 },
1108 { 1108 {
1109 "id": "Initiator", 1109 "id": "Initiator",
1110 "type": "object", 1110 "type": "object",
1111 "description": "Information about the request initiator.", 1111 "description": "Information about the request initiator.",
1112 "properties": [ 1112 "properties": [
1113 { "name": "type", "type": "string", "enum": ["parser", "scri pt", "preload", "other"], "description": "Type of this initiator." }, 1113 { "name": "type", "type": "string", "enum": ["parser", "scri pt", "other"], "description": "Type of this initiator." },
1114 { "name": "stack", "$ref": "Runtime.StackTrace", "optional": true, "description": "Initiator JavaScript stack trace, set for Script only." } , 1114 { "name": "stack", "$ref": "Runtime.StackTrace", "optional": true, "description": "Initiator JavaScript stack trace, set for Script only." } ,
1115 { "name": "url", "type": "string", "optional": true, "descri ption": "Initiator URL, set for Parser type only." }, 1115 { "name": "url", "type": "string", "optional": true, "descri ption": "Initiator URL, set for Parser type only." },
1116 { "name": "lineNumber", "type": "number", "optional": true, "description": "Initiator line number, set for Parser type only (0-based)." } 1116 { "name": "lineNumber", "type": "number", "optional": true, "description": "Initiator line number, set for Parser type only (0-based)." }
1117 ] 1117 ]
1118 }, 1118 },
1119 { 1119 {
1120 "id": "Cookie", 1120 "id": "Cookie",
1121 "type": "object", 1121 "type": "object",
1122 "description": "Cookie object", 1122 "description": "Cookie object",
1123 "properties": [ 1123 "properties": [
(...skipping 3377 matching lines...) Expand 10 before | Expand all | Expand 10 after
4501 "name": "accepted", 4501 "name": "accepted",
4502 "description": "Informs that port was successfully bound and got a specified connection id.", 4502 "description": "Informs that port was successfully bound and got a specified connection id.",
4503 "parameters": [ 4503 "parameters": [
4504 {"name": "port", "type": "integer", "description": "Port num ber that was successfully bound." }, 4504 {"name": "port", "type": "integer", "description": "Port num ber that was successfully bound." },
4505 {"name": "connectionId", "type": "string", "description": "C onnection id to be used." } 4505 {"name": "connectionId", "type": "string", "description": "C onnection id to be used." }
4506 ] 4506 ]
4507 } 4507 }
4508 ] 4508 ]
4509 }] 4509 }]
4510 } 4510 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698