Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 1386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1397 "description": "Cookie object", | 1397 "description": "Cookie object", |
| 1398 "properties": [ | 1398 "properties": [ |
| 1399 { "name": "name", "type": "string", "description": "Cookie n ame." }, | 1399 { "name": "name", "type": "string", "description": "Cookie n ame." }, |
| 1400 { "name": "value", "type": "string", "description": "Cookie value." }, | 1400 { "name": "value", "type": "string", "description": "Cookie value." }, |
| 1401 { "name": "domain", "type": "string", "description": "Cookie domain." }, | 1401 { "name": "domain", "type": "string", "description": "Cookie domain." }, |
| 1402 { "name": "path", "type": "string", "description": "Cookie p ath." }, | 1402 { "name": "path", "type": "string", "description": "Cookie p ath." }, |
| 1403 { "name": "expires", "type": "number", "description": "Cooki e expires." }, | 1403 { "name": "expires", "type": "number", "description": "Cooki e expires." }, |
| 1404 { "name": "size", "type": "integer", "description": "Cookie size." }, | 1404 { "name": "size", "type": "integer", "description": "Cookie size." }, |
| 1405 { "name": "httpOnly", "type": "boolean", "description": "Tru e if cookie is http-only." }, | 1405 { "name": "httpOnly", "type": "boolean", "description": "Tru e if cookie is http-only." }, |
| 1406 { "name": "secure", "type": "boolean", "description": "True if cookie is secure." }, | 1406 { "name": "secure", "type": "boolean", "description": "True if cookie is secure." }, |
| 1407 { "name": "session", "type": "boolean", "description": "True in case of session cookie." } | 1407 { "name": "session", "type": "boolean", "description": "True in case of session cookie." }, |
| 1408 { "name": "sameSite", "type": "string", "description": "'Lax ', 'Strict', or the empty string." } | |
|
dgozman
2016/03/24 18:59:26
Use enum:
"type": "string", "enum": ["Lax", "Stric
| |
| 1408 ], | 1409 ], |
| 1409 "hidden": true | 1410 "hidden": true |
| 1410 } | 1411 } |
| 1411 ], | 1412 ], |
| 1412 "commands": [ | 1413 "commands": [ |
| 1413 { | 1414 { |
| 1414 "name": "enable", | 1415 "name": "enable", |
| 1415 "description": "Enables network tracking, network events will no w be delivered to the client.", | 1416 "description": "Enables network tracking, network events will no w be delivered to the client.", |
| 1416 "parameters": [ | 1417 "parameters": [ |
| 1417 { "name": "maxTotalBufferSize", "type": "integer", "optional ": true, "hidden": true, "description": "Buffer size in bytes to use when preser ving network payloads (XHRs, etc)." }, | 1418 { "name": "maxTotalBufferSize", "type": "integer", "optional ": true, "hidden": true, "description": "Buffer size in bytes to use when preser ving network payloads (XHRs, etc)." }, |
| (...skipping 3772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 5190 ], | 5191 ], |
| 5191 "returns": [ | 5192 "returns": [ |
| 5192 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } | 5193 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } |
| 5193 ], | 5194 ], |
| 5194 "description": "Fetches the accessibility node for this DOM node , if it exists.", | 5195 "description": "Fetches the accessibility node for this DOM node , if it exists.", |
| 5195 "hidden": true | 5196 "hidden": true |
| 5196 } | 5197 } |
| 5197 ] | 5198 ] |
| 5198 }] | 5199 }] |
| 5199 } | 5200 } |
| OLD | NEW |