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

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: Rebase. 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 1315 matching lines...) Expand 10 before | Expand all | Expand 10 after
1326 { "name": "cipher", "type": "string", "description": "Cipher name." }, 1326 { "name": "cipher", "type": "string", "description": "Cipher name." },
1327 { "name": "mac", "type": "string", "optional": true, "descri ption": "TLS MAC. Note that AEAD ciphers do not have separate MACs." }, 1327 { "name": "mac", "type": "string", "optional": true, "descri ption": "TLS MAC. Note that AEAD ciphers do not have separate MACs." },
1328 { "name": "certificateId", "$ref": "Security.CertificateId", "description": "Certificate ID value." }, 1328 { "name": "certificateId", "$ref": "Security.CertificateId", "description": "Certificate ID value." },
1329 { "name": "certificateValidationDetails", "$ref": "Certifica teValidationDetails", "optional": true, "description": "Validation details for t he request's certficate." } 1329 { "name": "certificateValidationDetails", "$ref": "Certifica teValidationDetails", "optional": true, "description": "Validation details for t he request's certficate." }
1330 ] 1330 ]
1331 }, 1331 },
1332 { 1332 {
1333 "id": "BlockedReason", 1333 "id": "BlockedReason",
1334 "type": "string", 1334 "type": "string",
1335 "description": "The reason why request was blocked.", 1335 "description": "The reason why request was blocked.",
1336 "enum": ["csp", "mixed-content", "origin", "inspector", "other"] , 1336 "enum": ["csp", "mixed-content", "origin", "inspector", "subreso urce-filter", "other"],
1337 "hidden": true 1337 "hidden": true
1338 }, 1338 },
1339 { 1339 {
1340 "id": "Response", 1340 "id": "Response",
1341 "type": "object", 1341 "type": "object",
1342 "description": "HTTP response data.", 1342 "description": "HTTP response data.",
1343 "properties": [ 1343 "properties": [
1344 { "name": "url", "type": "string", "description": "Response URL. This URL can be different from CachedResource.url in case of redirect." }, 1344 { "name": "url", "type": "string", "description": "Response URL. This URL can be different from CachedResource.url in case of redirect." },
1345 { "name": "status", "type": "number", "description": "HTTP r esponse status code." }, 1345 { "name": "status", "type": "number", "description": "HTTP r esponse status code." },
1346 { "name": "statusText", "type": "string", "description": "HT TP response status text." }, 1346 { "name": "statusText", "type": "string", "description": "HT TP response status text." },
(...skipping 3834 matching lines...) Expand 10 before | Expand all | Expand 10 after
5181 "parameters": [ 5181 "parameters": [
5182 { "name": "origin", "type": "string", "description": "Securi ty origin." }, 5182 { "name": "origin", "type": "string", "description": "Securi ty origin." },
5183 { "name": "storageTypes", "type": "string", "description": " Comma separated origin names." } 5183 { "name": "storageTypes", "type": "string", "description": " Comma separated origin names." }
5184 ], 5184 ],
5185 "description": "Clears storage for origin.", 5185 "description": "Clears storage for origin.",
5186 "handlers": ["browser"] 5186 "handlers": ["browser"]
5187 } 5187 }
5188 ] 5188 ]
5189 }] 5189 }]
5190 } 5190 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698