Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "version": { "major": "1", "minor": "0" }, | 2 "version": { "major": "1", "minor": "0" }, |
| 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 1420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1431 "commands": [ | 1431 "commands": [ |
| 1432 { | 1432 { |
| 1433 "name": "enable", | 1433 "name": "enable", |
| 1434 "description": "Enables storage tracking, storage events will no w be delivered to the client." | 1434 "description": "Enables storage tracking, storage events will no w be delivered to the client." |
| 1435 }, | 1435 }, |
| 1436 { | 1436 { |
| 1437 "name": "disable", | 1437 "name": "disable", |
| 1438 "description": "Disables storage tracking, prevents storage even ts from being sent to the client." | 1438 "description": "Disables storage tracking, prevents storage even ts from being sent to the client." |
| 1439 }, | 1439 }, |
| 1440 { | 1440 { |
| 1441 "name": "getDOMStorageItem", | |
| 1442 "parameters": [ | |
| 1443 { "name": "storageId", "$ref": "StorageId" }, | |
| 1444 { "name": "key", "type": "string" } | |
| 1445 ], | |
| 1446 "returns": [ | |
| 1447 { "name": "exists", "type": "boolean" }, | |
| 1448 { "name": "value", "type": "string" } | |
|
apavlov
2013/07/31 12:51:35
make this "optional": true and get rid of the "exi
| |
| 1449 ] | |
| 1450 }, | |
| 1451 { | |
| 1441 "name": "getDOMStorageItems", | 1452 "name": "getDOMStorageItems", |
| 1442 "parameters": [ | 1453 "parameters": [ |
| 1443 { "name": "storageId", "$ref": "StorageId" } | 1454 { "name": "storageId", "$ref": "StorageId" } |
| 1444 ], | 1455 ], |
| 1445 "returns": [ | 1456 "returns": [ |
| 1446 { "name": "entries", "type": "array", "items": { "$ref": "It em" } } | 1457 { "name": "entries", "type": "array", "items": { "$ref": "It em" } } |
| 1447 ] | 1458 ] |
| 1448 }, | 1459 }, |
| 1449 { | 1460 { |
| 1450 "name": "setDOMStorageItem", | 1461 "name": "setDOMStorageItem", |
| (...skipping 2393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3844 "parameters": [ | 3855 "parameters": [ |
| 3845 { "name": "value", "type": "array", "items": { "type": "obje ct" } } | 3856 { "name": "value", "type": "array", "items": { "type": "obje ct" } } |
| 3846 ] | 3857 ] |
| 3847 }, | 3858 }, |
| 3848 { | 3859 { |
| 3849 "name": "tracingComplete" | 3860 "name": "tracingComplete" |
| 3850 } | 3861 } |
| 3851 ] | 3862 ] |
| 3852 }] | 3863 }] |
| 3853 } | 3864 } |
| OLD | NEW |