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

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

Issue 1872673002: DevTools: introduce the bypass service worker checkbox. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/NetworkManager.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 1529 matching lines...) Expand 10 before | Expand all | Expand 10 after
1540 "handlers": ["browser", "renderer"] 1540 "handlers": ["browser", "renderer"]
1541 }, 1541 },
1542 { 1542 {
1543 "name": "setCacheDisabled", 1543 "name": "setCacheDisabled",
1544 "parameters": [ 1544 "parameters": [
1545 { "name": "cacheDisabled", "type": "boolean", "description": "Cache disabled state." } 1545 { "name": "cacheDisabled", "type": "boolean", "description": "Cache disabled state." }
1546 ], 1546 ],
1547 "description": "Toggles ignoring cache for each request. If <cod e>true</code>, cache will not be used." 1547 "description": "Toggles ignoring cache for each request. If <cod e>true</code>, cache will not be used."
1548 }, 1548 },
1549 { 1549 {
1550 "name": "setBypassServiceWorker",
1551 "parameters": [
1552 { "name": "bypass", "type": "boolean", "description": "Bypas s service worker and load from network." }
1553 ],
1554 "hidden": true,
1555 "description": "Toggles ignoring of service worker for each requ est."
1556 },
1557 {
1550 "name": "setDataSizeLimitsForTest", 1558 "name": "setDataSizeLimitsForTest",
1551 "parameters": [ 1559 "parameters": [
1552 { "name": "maxTotalSize", "type": "integer", "description": "Maximum total buffer size." }, 1560 { "name": "maxTotalSize", "type": "integer", "description": "Maximum total buffer size." },
1553 { "name": "maxResourceSize", "type": "integer", "description ": "Maximum per-resource size." } 1561 { "name": "maxResourceSize", "type": "integer", "description ": "Maximum per-resource size." }
1554 ], 1562 ],
1555 "description": "For testing.", 1563 "description": "For testing.",
1556 "hidden": true 1564 "hidden": true
1557 }, 1565 },
1558 { 1566 {
1559 "name": "getCertificateDetails", 1567 "name": "getCertificateDetails",
(...skipping 3507 matching lines...) Expand 10 before | Expand all | Expand 10 after
5067 ], 5075 ],
5068 "returns": [ 5076 "returns": [
5069 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5077 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5070 ], 5078 ],
5071 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5079 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5072 "hidden": true 5080 "hidden": true
5073 } 5081 }
5074 ] 5082 ]
5075 }] 5083 }]
5076 } 5084 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sdk/NetworkManager.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698