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

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: Added missing return 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 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
804 }, 804 },
805 { 805 {
806 "id": "ObjectPreview", 806 "id": "ObjectPreview",
807 "type": "object", 807 "type": "object",
808 "hidden": true, 808 "hidden": true,
809 "description": "Object containing abbreviated remote object valu e.", 809 "description": "Object containing abbreviated remote object valu e.",
810 "properties": [ 810 "properties": [
811 { "name": "type", "type": "string", "enum": ["object", "func tion", "undefined", "string", "number", "boolean", "symbol"], "description": "Ob ject type." }, 811 { "name": "type", "type": "string", "enum": ["object", "func tion", "undefined", "string", "number", "boolean", "symbol"], "description": "Ob ject type." },
812 { "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." }, 812 { "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." },
813 { "name": "description", "type": "string", "optional": true, "description": "String representation of the object." }, 813 { "name": "description", "type": "string", "optional": true, "description": "String representation of the object." },
814 { "name": "lossless", "type": "boolean", "description": "Det ermines whether preview is lossless (contains all information of the original ob ject)." },
815 { "name": "overflow", "type": "boolean", "description": "Tru e iff some of the properties or entries of the original object did not fit." }, 814 { "name": "overflow", "type": "boolean", "description": "Tru e iff some of the properties or entries of the original object did not fit." },
816 { "name": "properties", "type": "array", "items": { "$ref": "PropertyPreview" }, "description": "List of the properties." }, 815 { "name": "properties", "type": "array", "items": { "$ref": "PropertyPreview" }, "description": "List of the properties." },
817 { "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." } 816 { "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." }
818 ] 817 ]
819 }, 818 },
820 { 819 {
821 "id": "PropertyPreview", 820 "id": "PropertyPreview",
822 "type": "object", 821 "type": "object",
823 "hidden": true, 822 "hidden": true,
824 "properties": [ 823 "properties": [
(...skipping 4332 matching lines...) Expand 10 before | Expand all | Expand 10 after
5157 "parameters": [ 5156 "parameters": [
5158 { "name": "origin", "type": "string", "description": "Securi ty origin." }, 5157 { "name": "origin", "type": "string", "description": "Securi ty origin." },
5159 { "name": "storageTypes", "type": "string", "description": " Comma separated origin names." } 5158 { "name": "storageTypes", "type": "string", "description": " Comma separated origin names." }
5160 ], 5159 ],
5161 "description": "Clears storage for origin.", 5160 "description": "Clears storage for origin.",
5162 "handlers": ["browser"] 5161 "handlers": ["browser"]
5163 } 5162 }
5164 ] 5163 ]
5165 }] 5164 }]
5166 } 5165 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698