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

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

Issue 2022783002: Skeleton of the Safe Browsing Subresource Filter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments from battre@. Created 4 years, 6 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": "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 1304 matching lines...) Expand 10 before | Expand all | Expand 10 after
1315 { "name": "cipher", "type": "string", "description": "Cipher name." }, 1315 { "name": "cipher", "type": "string", "description": "Cipher name." },
1316 { "name": "mac", "type": "string", "optional": true, "descri ption": "TLS MAC. Note that AEAD ciphers do not have separate MACs." }, 1316 { "name": "mac", "type": "string", "optional": true, "descri ption": "TLS MAC. Note that AEAD ciphers do not have separate MACs." },
1317 { "name": "certificateId", "$ref": "CertificateId", "descrip tion": "Certificate ID value." }, 1317 { "name": "certificateId", "$ref": "CertificateId", "descrip tion": "Certificate ID value." },
1318 { "name": "certificateValidationDetails", "$ref": "Certifica teValidationDetails", "optional": true, "description": "Validation details for t he request's certficate." } 1318 { "name": "certificateValidationDetails", "$ref": "Certifica teValidationDetails", "optional": true, "description": "Validation details for t he request's certficate." }
1319 ] 1319 ]
1320 }, 1320 },
1321 { 1321 {
1322 "id": "BlockedReason", 1322 "id": "BlockedReason",
1323 "type": "string", 1323 "type": "string",
1324 "description": "The reason why request was blocked.", 1324 "description": "The reason why request was blocked.",
1325 "enum": ["csp", "mixed-content", "origin", "inspector", "other"] , 1325 "enum": ["csp", "mixed-content", "origin", "inspector", "client" , "other"],
1326 "hidden": true 1326 "hidden": true
1327 }, 1327 },
1328 { 1328 {
1329 "id": "Response", 1329 "id": "Response",
1330 "type": "object", 1330 "type": "object",
1331 "description": "HTTP response data.", 1331 "description": "HTTP response data.",
1332 "properties": [ 1332 "properties": [
1333 { "name": "url", "type": "string", "description": "Response URL. This URL can be different from CachedResource.url in case of redirect." }, 1333 { "name": "url", "type": "string", "description": "Response URL. This URL can be different from CachedResource.url in case of redirect." },
1334 { "name": "status", "type": "number", "description": "HTTP r esponse status code." }, 1334 { "name": "status", "type": "number", "description": "HTTP r esponse status code." },
1335 { "name": "statusText", "type": "string", "description": "HT TP response status text." }, 1335 { "name": "statusText", "type": "string", "description": "HT TP response status text." },
(...skipping 3814 matching lines...) Expand 10 before | Expand all | Expand 10 after
5150 "parameters": [ 5150 "parameters": [
5151 { "name": "origin", "type": "string", "description": "Securi ty origin." }, 5151 { "name": "origin", "type": "string", "description": "Securi ty origin." },
5152 { "name": "storageTypes", "type": "string", "description": " Comma separated origin names." } 5152 { "name": "storageTypes", "type": "string", "description": " Comma separated origin names." }
5153 ], 5153 ],
5154 "description": "Clears storage for origin.", 5154 "description": "Clears storage for origin.",
5155 "handlers": ["browser"] 5155 "handlers": ["browser"]
5156 } 5156 }
5157 ] 5157 ]
5158 }] 5158 }]
5159 } 5159 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698