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

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

Issue 1072523002: Devtools: allow multiple custom formatters (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Test added 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
« no previous file with comments | « Source/devtools/front_end/components/CustomPreviewSection.js ('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 734 matching lines...) Expand 10 before | Expand all | Expand 10 after
745 { "name": "objectId", "$ref": "RemoteObjectId", "optional": true, "description": "Unique object identifier (for non-primitive values)." }, 745 { "name": "objectId", "$ref": "RemoteObjectId", "optional": true, "description": "Unique object identifier (for non-primitive values)." },
746 { "name": "preview", "$ref": "ObjectPreview", "optional": tr ue, "description": "Preview containing abbreviated property values. Specified fo r <code>object</code> type values only.", "hidden": true }, 746 { "name": "preview", "$ref": "ObjectPreview", "optional": tr ue, "description": "Preview containing abbreviated property values. Specified fo r <code>object</code> type values only.", "hidden": true },
747 { "name": "customPreview", "$ref": "CustomPreview", "optiona l": true, "hidden": true} 747 { "name": "customPreview", "$ref": "CustomPreview", "optiona l": true, "hidden": true}
748 ] 748 ]
749 }, 749 },
750 { "id": "CustomPreview", 750 { "id": "CustomPreview",
751 "type": "object", 751 "type": "object",
752 "hidden": true, 752 "hidden": true,
753 "properties": [ 753 "properties": [
754 { "name": "header", "type": "string"}, 754 { "name": "header", "type": "string"},
755 { "name": "hasBody", "type": "boolean"} 755 { "name": "hasBody", "type": "boolean"},
756 {"name": "formatterObjectId", "$ref": "RemoteObjectId"}
756 ] 757 ]
757 }, 758 },
758 { 759 {
759 "id": "ObjectPreview", 760 "id": "ObjectPreview",
760 "type": "object", 761 "type": "object",
761 "hidden": true, 762 "hidden": true,
762 "description": "Object containing abbreviated remote object valu e.", 763 "description": "Object containing abbreviated remote object valu e.",
763 "properties": [ 764 "properties": [
764 { "name": "type", "type": "string", "enum": ["object", "func tion", "undefined", "string", "number", "boolean", "symbol"], "description": "Ob ject type." }, 765 { "name": "type", "type": "string", "enum": ["object", "func tion", "undefined", "string", "number", "boolean", "symbol"], "description": "Ob ject type." },
765 { "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." }, 766 { "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 4304 matching lines...) Expand 10 before | Expand all | Expand 10 after
5070 ], 5071 ],
5071 "returns": [ 5072 "returns": [
5072 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5073 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5073 ], 5074 ],
5074 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5075 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5075 "hidden": true 5076 "hidden": true
5076 } 5077 }
5077 ] 5078 ]
5078 }] 5079 }]
5079 } 5080 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/components/CustomPreviewSection.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698