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

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

Issue 1167693010: Add a DevTools Security domain to protocol.json. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Exclude Security from the agents-enable-disable test (like ServiceWorker). Created 5 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
« no previous file with comments | « LayoutTests/inspector/agents-enable-disable.html ('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 4937 matching lines...) Expand 10 before | Expand all | Expand 10 after
4948 "parameters": [ 4948 "parameters": [
4949 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "ID of node to get accessibility node for." } 4949 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "ID of node to get accessibility node for." }
4950 ], 4950 ],
4951 "returns": [ 4951 "returns": [
4952 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 4952 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
4953 ], 4953 ],
4954 "description": "Fetches the accessibility node for this DOM node , if it exists.", 4954 "description": "Fetches the accessibility node for this DOM node , if it exists.",
4955 "hidden": true 4955 "hidden": true
4956 } 4956 }
4957 ] 4957 ]
4958 },
4959 {
4960 "domain": "Security",
4961 "description": "Security",
4962 "hidden": true,
4963 "types": [
4964 {
4965 "id": "SecurityState",
4966 "type": "string",
4967 "enum": ["unknown", "http", "insecure", "warning", "secure"],
4968 "description": "The security level of a page or resource."
4969 }
4970 ],
4971 "commands": [
4972 {
4973 "name": "enable",
4974 "description": "Enables tracking security state changes.",
4975 "handlers": ["browser"]
4976 },
4977 {
4978 "name": "disable",
4979 "description": "Disables tracking security state changes.",
4980 "handlers": ["browser"]
4981 }
4982 ],
4983 "events": [
4984 {
4985 "name": "securityStateChanged",
4986 "description": "The security state of the page changed.",
4987 "parameters": [
4988 { "name": "securityState", "$ref": "SecurityState", "descrip tion": "Security state." }
4989 ],
4990 "handlers": ["browser"]
4991 }
4992 ]
4958 }] 4993 }]
4959 } 4994 }
OLDNEW
« no previous file with comments | « LayoutTests/inspector/agents-enable-disable.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698