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

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

Issue 1096283003: Devtools:[CustomFormatter] Allow object tags in headers (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add self reference test Created 5 years, 8 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 | Annotate | Revision Log
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 724 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 { "name": "preview", "$ref": "ObjectPreview", "optional": tr ue, "description": "Preview containing abbreviated property values. Specified fo r <code>object</code> type values only.", "hidden": true }, 735 { "name": "preview", "$ref": "ObjectPreview", "optional": tr ue, "description": "Preview containing abbreviated property values. Specified fo r <code>object</code> type values only.", "hidden": true },
736 { "name": "customPreview", "$ref": "CustomPreview", "optiona l": true, "hidden": true} 736 { "name": "customPreview", "$ref": "CustomPreview", "optiona l": true, "hidden": true}
737 ] 737 ]
738 }, 738 },
739 { "id": "CustomPreview", 739 { "id": "CustomPreview",
740 "type": "object", 740 "type": "object",
741 "hidden": true, 741 "hidden": true,
742 "properties": [ 742 "properties": [
743 { "name": "header", "type": "string"}, 743 { "name": "header", "type": "string"},
744 { "name": "hasBody", "type": "boolean"}, 744 { "name": "hasBody", "type": "boolean"},
745 {"name": "formatterObjectId", "$ref": "RemoteObjectId"} 745 {"name": "formatterObjectId", "$ref": "RemoteObjectId"},
746 {"name": "configObjectId", "$ref": "RemoteObjectId", "option al": true}
746 ] 747 ]
747 }, 748 },
748 { 749 {
749 "id": "ObjectPreview", 750 "id": "ObjectPreview",
750 "type": "object", 751 "type": "object",
751 "hidden": true, 752 "hidden": true,
752 "description": "Object containing abbreviated remote object valu e.", 753 "description": "Object containing abbreviated remote object valu e.",
753 "properties": [ 754 "properties": [
754 { "name": "type", "type": "string", "enum": ["object", "func tion", "undefined", "string", "number", "boolean", "symbol"], "description": "Ob ject type." }, 755 { "name": "type", "type": "string", "enum": ["object", "func tion", "undefined", "string", "number", "boolean", "symbol"], "description": "Ob ject type." },
755 { "name": "subtype", "type": "string", "optional": true, "en um": ["array", "null", "node", "regexp", "date", "map", "set", "iterator", "gene rator", "error"], "description": "Object subtype hint. Specified for <code>objec t</code> type values only." }, 756 { "name": "subtype", "type": "string", "optional": true, "en um": ["array", "null", "node", "regexp", "date", "map", "set", "iterator", "gene rator", "error"], "description": "Object subtype hint. Specified for <code>objec t</code> type values only." },
(...skipping 4377 matching lines...) Expand 10 before | Expand all | Expand 10 after
5133 ], 5134 ],
5134 "returns": [ 5135 "returns": [
5135 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5136 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5136 ], 5137 ],
5137 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5138 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5138 "hidden": true 5139 "hidden": true
5139 } 5140 }
5140 ] 5141 ]
5141 }] 5142 }]
5142 } 5143 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698