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

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: Feedback Created 4 years, 8 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 1376 matching lines...) Expand 10 before | Expand all | Expand 10 after
1387 "description": "Cookie object", 1387 "description": "Cookie object",
1388 "properties": [ 1388 "properties": [
1389 { "name": "name", "type": "string", "description": "Cookie n ame." }, 1389 { "name": "name", "type": "string", "description": "Cookie n ame." },
1390 { "name": "value", "type": "string", "description": "Cookie value." }, 1390 { "name": "value", "type": "string", "description": "Cookie value." },
1391 { "name": "domain", "type": "string", "description": "Cookie domain." }, 1391 { "name": "domain", "type": "string", "description": "Cookie domain." },
1392 { "name": "path", "type": "string", "description": "Cookie p ath." }, 1392 { "name": "path", "type": "string", "description": "Cookie p ath." },
1393 { "name": "expires", "type": "number", "description": "Cooki e expires." }, 1393 { "name": "expires", "type": "number", "description": "Cooki e expires." },
1394 { "name": "size", "type": "integer", "description": "Cookie size." }, 1394 { "name": "size", "type": "integer", "description": "Cookie size." },
1395 { "name": "httpOnly", "type": "boolean", "description": "Tru e if cookie is http-only." }, 1395 { "name": "httpOnly", "type": "boolean", "description": "Tru e if cookie is http-only." },
1396 { "name": "secure", "type": "boolean", "description": "True if cookie is secure." }, 1396 { "name": "secure", "type": "boolean", "description": "True if cookie is secure." },
1397 { "name": "session", "type": "boolean", "description": "True in case of session cookie." } 1397 { "name": "session", "type": "boolean", "description": "True in case of session cookie." },
1398 { "name": "sameSite", "type": "string", "optional": true, "e num": ["Strict", "Lax"], "description": "Represents the cookies' 'SameSite' stat us: https://tools.ietf.org/html/draft-west-first-party-cookies" }
1398 ], 1399 ],
1399 "hidden": true 1400 "hidden": true
1400 } 1401 }
1401 ], 1402 ],
1402 "commands": [ 1403 "commands": [
1403 { 1404 {
1404 "name": "enable", 1405 "name": "enable",
1405 "description": "Enables network tracking, network events will no w be delivered to the client.", 1406 "description": "Enables network tracking, network events will no w be delivered to the client.",
1406 "parameters": [ 1407 "parameters": [
1407 { "name": "maxTotalBufferSize", "type": "integer", "optional ": true, "hidden": true, "description": "Buffer size in bytes to use when preser ving network payloads (XHRs, etc)." }, 1408 { "name": "maxTotalBufferSize", "type": "integer", "optional ": true, "hidden": true, "description": "Buffer size in bytes to use when preser ving network payloads (XHRs, etc)." },
(...skipping 3655 matching lines...) Expand 10 before | Expand all | Expand 10 after
5063 ], 5064 ],
5064 "returns": [ 5065 "returns": [
5065 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5066 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5066 ], 5067 ],
5067 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5068 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5068 "hidden": true 5069 "hidden": true
5069 } 5070 }
5070 ] 5071 ]
5071 }] 5072 }]
5072 } 5073 }
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