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

Side by Side Diff: third_party/WebKit/Source/core/inspector/browser_protocol.json

Issue 2900613002: Support DevTools for off-main-thread-fetch (Closed)
Patch Set: rebase Created 3 years, 5 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
OLDNEW
1 { 1 {
2 "version": { "major": "1", "minor": "2" }, 2 "version": { "major": "1", "minor": "2" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "experimental": true, 5 "experimental": 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 1564 matching lines...) Expand 10 before | Expand all | Expand 10 after
1575 { "name": "newPriority", "$ref": "ResourcePriority", "descri ption": "New priority" }, 1575 { "name": "newPriority", "$ref": "ResourcePriority", "descri ption": "New priority" },
1576 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." } 1576 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }
1577 ], 1577 ],
1578 "experimental": true 1578 "experimental": true
1579 }, 1579 },
1580 { 1580 {
1581 "name": "requestWillBeSent", 1581 "name": "requestWillBeSent",
1582 "description": "Fired when page is about to send HTTP request.", 1582 "description": "Fired when page is about to send HTTP request.",
1583 "parameters": [ 1583 "parameters": [
1584 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1584 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1585 { "name": "frameId", "$ref": "Page.FrameId", "description": "Frame identifier.", "experimental": true }, 1585 { "name": "loaderId", "$ref": "LoaderId", "description": "Lo ader identifier. Empty string if the request is fetched form worker." },
1586 { "name": "loaderId", "$ref": "LoaderId", "description": "Lo ader identifier." },
1587 { "name": "documentURL", "type": "string", "description": "U RL of the document this request is loaded for." }, 1586 { "name": "documentURL", "type": "string", "description": "U RL of the document this request is loaded for." },
1588 { "name": "request", "$ref": "Request", "description": "Requ est data." }, 1587 { "name": "request", "$ref": "Request", "description": "Requ est data." },
1589 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1588 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1590 { "name": "wallTime", "$ref": "Timestamp", "experimental": t rue, "description": "UTC Timestamp." }, 1589 { "name": "wallTime", "$ref": "Timestamp", "experimental": t rue, "description": "UTC Timestamp." },
1591 { "name": "initiator", "$ref": "Initiator", "description": " Request initiator." }, 1590 { "name": "initiator", "$ref": "Initiator", "description": " Request initiator." },
1592 { "name": "redirectResponse", "optional": true, "$ref": "Res ponse", "description": "Redirect response data." }, 1591 { "name": "redirectResponse", "optional": true, "$ref": "Res ponse", "description": "Redirect response data." },
1593 { "name": "type", "$ref": "Page.ResourceType", "optional": t rue, "experimental": true, "description": "Type of this resource." } 1592 { "name": "type", "$ref": "Page.ResourceType", "optional": t rue, "experimental": true, "description": "Type of this resource." },
1593 { "name": "frameId", "optional": true, "$ref": "Page.FrameId ", "description": "Frame identifier.", "experimental": true }
1594 ] 1594 ]
1595 }, 1595 },
1596 { 1596 {
1597 "name": "requestServedFromCache", 1597 "name": "requestServedFromCache",
1598 "description": "Fired if request ended up loading from cache.", 1598 "description": "Fired if request ended up loading from cache.",
1599 "parameters": [ 1599 "parameters": [
1600 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." } 1600 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }
1601 ] 1601 ]
1602 }, 1602 },
1603 { 1603 {
1604 "name": "responseReceived", 1604 "name": "responseReceived",
1605 "description": "Fired when HTTP response is available.", 1605 "description": "Fired when HTTP response is available.",
1606 "parameters": [ 1606 "parameters": [
1607 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1607 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1608 { "name": "frameId", "$ref": "Page.FrameId", "description": "Frame identifier.", "experimental": true }, 1608 { "name": "loaderId", "$ref": "LoaderId", "description": "Lo ader identifier. Empty string if the request is fetched form worker." },
1609 { "name": "loaderId", "$ref": "LoaderId", "description": "Lo ader identifier." },
1610 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1609 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1611 { "name": "type", "$ref": "Page.ResourceType", "description" : "Resource type." }, 1610 { "name": "type", "$ref": "Page.ResourceType", "description" : "Resource type." },
1612 { "name": "response", "$ref": "Response", "description": "Re sponse data." } 1611 { "name": "response", "$ref": "Response", "description": "Re sponse data." },
1612 { "name": "frameId", "optional": true, "$ref": "Page.FrameId ", "description": "Frame identifier.", "experimental": true }
1613 ] 1613 ]
1614 }, 1614 },
1615 { 1615 {
1616 "name": "dataReceived", 1616 "name": "dataReceived",
1617 "description": "Fired when data chunk was received over the netw ork.", 1617 "description": "Fired when data chunk was received over the netw ork.",
1618 "parameters": [ 1618 "parameters": [
1619 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1619 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1620 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1620 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1621 { "name": "dataLength", "type": "integer", "description": "D ata chunk length." }, 1621 { "name": "dataLength", "type": "integer", "description": "D ata chunk length." },
1622 { "name": "encodedDataLength", "type": "integer", "descripti on": "Actual bytes received (might be less than dataLength for compressed encodi ngs)." } 1622 { "name": "encodedDataLength", "type": "integer", "descripti on": "Actual bytes received (might be less than dataLength for compressed encodi ngs)." }
(...skipping 3214 matching lines...) Expand 10 before | Expand all | Expand 10 after
4837 "parameters": [ 4837 "parameters": [
4838 { "name": "windowId", "$ref": "WindowID", "description": "Br owser window id." } 4838 { "name": "windowId", "$ref": "WindowID", "description": "Br owser window id." }
4839 ], 4839 ],
4840 "returns": [ 4840 "returns": [
4841 { "name": "bounds", "$ref": "Bounds", "description": "Bounds information of the window. When window state is 'minimized', the restored windo w position and size are returned." } 4841 { "name": "bounds", "$ref": "Bounds", "description": "Bounds information of the window. When window state is 'minimized', the restored windo w position and size are returned." }
4842 ] 4842 ]
4843 } 4843 }
4844 ] 4844 ]
4845 }] 4845 }]
4846 } 4846 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698