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

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

Issue 1963753003: DevTools: default all console object previews to lossy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 786 matching lines...) Expand 10 before | Expand all | Expand 10 after
797 }, 797 },
798 { 798 {
799 "id": "ObjectPreview", 799 "id": "ObjectPreview",
800 "type": "object", 800 "type": "object",
801 "hidden": true, 801 "hidden": true,
802 "description": "Object containing abbreviated remote object valu e.", 802 "description": "Object containing abbreviated remote object valu e.",
803 "properties": [ 803 "properties": [
804 { "name": "type", "type": "string", "enum": ["object", "func tion", "undefined", "string", "number", "boolean", "symbol"], "description": "Ob ject type." }, 804 { "name": "type", "type": "string", "enum": ["object", "func tion", "undefined", "string", "number", "boolean", "symbol"], "description": "Ob ject type." },
805 { "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." }, 805 { "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." },
806 { "name": "description", "type": "string", "optional": true, "description": "String representation of the object." }, 806 { "name": "description", "type": "string", "optional": true, "description": "String representation of the object." },
807 { "name": "lossless", "type": "boolean", "description": "Det ermines whether preview is lossless (contains all information of the original ob ject)." },
808 { "name": "overflow", "type": "boolean", "description": "Tru e iff some of the properties or entries of the original object did not fit." }, 807 { "name": "overflow", "type": "boolean", "description": "Tru e iff some of the properties or entries of the original object did not fit." },
809 { "name": "properties", "type": "array", "items": { "$ref": "PropertyPreview" }, "description": "List of the properties." }, 808 { "name": "properties", "type": "array", "items": { "$ref": "PropertyPreview" }, "description": "List of the properties." },
810 { "name": "entries", "type": "array", "items": { "$ref": "En tryPreview" }, "optional": true, "description": "List of the entries. Specified for <code>map</code> and <code>set</code> subtype values only." } 809 { "name": "entries", "type": "array", "items": { "$ref": "En tryPreview" }, "optional": true, "description": "List of the entries. Specified for <code>map</code> and <code>set</code> subtype values only." }
811 ] 810 ]
812 }, 811 },
813 { 812 {
814 "id": "PropertyPreview", 813 "id": "PropertyPreview",
815 "type": "object", 814 "type": "object",
816 "hidden": true, 815 "hidden": true,
817 "properties": [ 816 "properties": [
(...skipping 4332 matching lines...) Expand 10 before | Expand all | Expand 10 after
5150 "parameters": [ 5149 "parameters": [
5151 { "name": "origin", "type": "string", "description": "Securi ty origin." }, 5150 { "name": "origin", "type": "string", "description": "Securi ty origin." },
5152 { "name": "storageTypes", "type": "string", "description": " Comma separated origin names." } 5151 { "name": "storageTypes", "type": "string", "description": " Comma separated origin names." }
5153 ], 5152 ],
5154 "description": "Clears storage for origin.", 5153 "description": "Clears storage for origin.",
5155 "handlers": ["browser"] 5154 "handlers": ["browser"]
5156 } 5155 }
5157 ] 5156 ]
5158 }] 5157 }]
5159 } 5158 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698