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

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

Issue 1827743002: SameSite: Teach devtools about the new 'samesite' syntax. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test Created 4 years, 9 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sdk/HAREntry.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1386 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sdk/HAREntry.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698