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

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

Issue 295633003: Show information about Symbols in DevTools console. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Wrap Symbol.prototype.toString.call in a try-catch block Created 6 years, 7 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 643 matching lines...) Expand 10 before | Expand all | Expand 10 after
654 { 654 {
655 "id": "RemoteObjectId", 655 "id": "RemoteObjectId",
656 "type": "string", 656 "type": "string",
657 "description": "Unique object identifier." 657 "description": "Unique object identifier."
658 }, 658 },
659 { 659 {
660 "id": "RemoteObject", 660 "id": "RemoteObject",
661 "type": "object", 661 "type": "object",
662 "description": "Mirror object referencing original JavaScript ob ject.", 662 "description": "Mirror object referencing original JavaScript ob ject.",
663 "properties": [ 663 "properties": [
664 { "name": "type", "type": "string", "enum": ["object", "func tion", "undefined", "string", "number", "boolean"], "description": "Object type. " }, 664 { "name": "type", "type": "string", "enum": ["object", "func tion", "undefined", "string", "number", "boolean", "symbol"], "description": "Ob ject type." },
665 { "name": "subtype", "type": "string", "optional": true, "en um": ["array", "null", "node", "regexp", "date"], "description": "Object subtype hint. Specified for <code>object</code> type values only." }, 665 { "name": "subtype", "type": "string", "optional": true, "en um": ["array", "null", "node", "regexp", "date"], "description": "Object subtype hint. Specified for <code>object</code> type values only." },
666 { "name": "className", "type": "string", "optional": true, " description": "Object class (constructor) name. Specified for <code>object</code > type values only." }, 666 { "name": "className", "type": "string", "optional": true, " description": "Object class (constructor) name. Specified for <code>object</code > type values only." },
667 { "name": "value", "type": "any", "optional": true, "descrip tion": "Remote object value in case of primitive values or JSON values (if it wa s requested), or description string if the value can not be JSON-stringified (li ke NaN, Infinity, -Infinity, -0)." }, 667 { "name": "value", "type": "any", "optional": true, "descrip tion": "Remote object value in case of primitive values or JSON values (if it wa s requested), or description string if the value can not be JSON-stringified (li ke NaN, Infinity, -Infinity, -0)." },
668 { "name": "description", "type": "string", "optional": true, "description": "String representation of the object." }, 668 { "name": "description", "type": "string", "optional": true, "description": "String representation of the object." },
669 { "name": "objectId", "$ref": "RemoteObjectId", "optional": true, "description": "Unique object identifier (for non-primitive values)." }, 669 { "name": "objectId", "$ref": "RemoteObjectId", "optional": true, "description": "Unique object identifier (for non-primitive values)." },
670 { "name": "preview", "$ref": "ObjectPreview", "optional": tr ue, "description": "Preview containing abbreviated property values.", "hidden": true } 670 { "name": "preview", "$ref": "ObjectPreview", "optional": tr ue, "description": "Preview containing abbreviated property values.", "hidden": true }
671 ] 671 ]
672 }, 672 },
673 { 673 {
674 "id": "ObjectPreview", 674 "id": "ObjectPreview",
(...skipping 3455 matching lines...) Expand 10 before | Expand all | Expand 10 after
4130 { 4130 {
4131 "name": "dataAvailable", 4131 "name": "dataAvailable",
4132 "parameters": [ 4132 "parameters": [
4133 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4133 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4134 ], 4134 ],
4135 "handlers": ["browser", "frontend"] 4135 "handlers": ["browser", "frontend"]
4136 } 4136 }
4137 ] 4137 ]
4138 }] 4138 }]
4139 } 4139 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698