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

Side by Side Diff: third_party/WebKit/Source/core/inspector/browser_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 998 matching lines...) Expand 10 before | Expand all | Expand 10 after
1009 { "name": "cipher", "type": "string", "description": "Cipher name." }, 1009 { "name": "cipher", "type": "string", "description": "Cipher name." },
1010 { "name": "mac", "type": "string", "optional": true, "descri ption": "TLS MAC. Note that AEAD ciphers do not have separate MACs." }, 1010 { "name": "mac", "type": "string", "optional": true, "descri ption": "TLS MAC. Note that AEAD ciphers do not have separate MACs." },
1011 { "name": "certificateId", "$ref": "Security.CertificateId", "description": "Certificate ID value." }, 1011 { "name": "certificateId", "$ref": "Security.CertificateId", "description": "Certificate ID value." },
1012 { "name": "certificateValidationDetails", "$ref": "Certifica teValidationDetails", "optional": true, "description": "Validation details for t he request's certficate." } 1012 { "name": "certificateValidationDetails", "$ref": "Certifica teValidationDetails", "optional": true, "description": "Validation details for t he request's certficate." }
1013 ] 1013 ]
1014 }, 1014 },
1015 { 1015 {
1016 "id": "BlockedReason", 1016 "id": "BlockedReason",
1017 "type": "string", 1017 "type": "string",
1018 "description": "The reason why request was blocked.", 1018 "description": "The reason why request was blocked.",
1019 "enum": ["csp", "mixed-content", "origin", "inspector", "other"] , 1019 "enum": ["csp", "mixed-content", "origin", "inspector", "subreso urce-filter", "other"],
pfeldman 2016/06/07 23:04:02 lgtm
1020 "hidden": true 1020 "hidden": true
1021 }, 1021 },
1022 { 1022 {
1023 "id": "Response", 1023 "id": "Response",
1024 "type": "object", 1024 "type": "object",
1025 "description": "HTTP response data.", 1025 "description": "HTTP response data.",
1026 "properties": [ 1026 "properties": [
1027 { "name": "url", "type": "string", "description": "Response URL. This URL can be different from CachedResource.url in case of redirect." }, 1027 { "name": "url", "type": "string", "description": "Response URL. This URL can be different from CachedResource.url in case of redirect." },
1028 { "name": "status", "type": "number", "description": "HTTP r esponse status code." }, 1028 { "name": "status", "type": "number", "description": "HTTP r esponse status code." },
1029 { "name": "statusText", "type": "string", "description": "HT TP response status text." }, 1029 { "name": "statusText", "type": "string", "description": "HT TP response status text." },
(...skipping 3178 matching lines...) Expand 10 before | Expand all | Expand 10 after
4208 "parameters": [ 4208 "parameters": [
4209 { "name": "origin", "type": "string", "description": "Securi ty origin." }, 4209 { "name": "origin", "type": "string", "description": "Securi ty origin." },
4210 { "name": "storageTypes", "type": "string", "description": " Comma separated origin names." } 4210 { "name": "storageTypes", "type": "string", "description": " Comma separated origin names." }
4211 ], 4211 ],
4212 "description": "Clears storage for origin.", 4212 "description": "Clears storage for origin.",
4213 "handlers": ["browser"] 4213 "handlers": ["browser"]
4214 } 4214 }
4215 ] 4215 ]
4216 }] 4216 }]
4217 } 4217 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698