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

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

Issue 2899973003: [wip]devtools
Patch Set: cleanup Created 3 years, 7 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 1495 matching lines...) Expand 10 before | Expand all | Expand 10 after
1506 { "name": "newPriority", "$ref": "ResourcePriority", "descri ption": "New priority" }, 1506 { "name": "newPriority", "$ref": "ResourcePriority", "descri ption": "New priority" },
1507 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." } 1507 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }
1508 ], 1508 ],
1509 "experimental": true 1509 "experimental": true
1510 }, 1510 },
1511 { 1511 {
1512 "name": "requestWillBeSent", 1512 "name": "requestWillBeSent",
1513 "description": "Fired when page is about to send HTTP request.", 1513 "description": "Fired when page is about to send HTTP request.",
1514 "parameters": [ 1514 "parameters": [
1515 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1515 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1516 { "name": "frameId", "$ref": "Page.FrameId", "description": "Frame identifier.", "experimental": true }, 1516 { "name": "loaderId", "$ref": "LoaderId", "description": "Lo ader identifier. Empty string if the request is fetched form worker." },
1517 { "name": "loaderId", "$ref": "LoaderId", "description": "Lo ader identifier." },
1518 { "name": "documentURL", "type": "string", "description": "U RL of the document this request is loaded for." }, 1517 { "name": "documentURL", "type": "string", "description": "U RL of the document this request is loaded for." },
1519 { "name": "request", "$ref": "Request", "description": "Requ est data." }, 1518 { "name": "request", "$ref": "Request", "description": "Requ est data." },
1520 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1519 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1521 { "name": "wallTime", "$ref": "Timestamp", "experimental": t rue, "description": "UTC Timestamp." }, 1520 { "name": "wallTime", "$ref": "Timestamp", "experimental": t rue, "description": "UTC Timestamp." },
1522 { "name": "initiator", "$ref": "Initiator", "description": " Request initiator." }, 1521 { "name": "initiator", "$ref": "Initiator", "description": " Request initiator." },
1523 { "name": "redirectResponse", "optional": true, "$ref": "Res ponse", "description": "Redirect response data." }, 1522 { "name": "redirectResponse", "optional": true, "$ref": "Res ponse", "description": "Redirect response data." },
1524 { "name": "type", "$ref": "Page.ResourceType", "optional": t rue, "experimental": true, "description": "Type of this resource." } 1523 { "name": "type", "$ref": "Page.ResourceType", "optional": t rue, "experimental": true, "description": "Type of this resource." },
1524 { "name": "frameId", "optional": true, "$ref": "Page.FrameId ", "description": "Frame identifier.", "experimental": true }
1525 ] 1525 ]
1526 }, 1526 },
1527 { 1527 {
1528 "name": "requestServedFromCache", 1528 "name": "requestServedFromCache",
1529 "description": "Fired if request ended up loading from cache.", 1529 "description": "Fired if request ended up loading from cache.",
1530 "parameters": [ 1530 "parameters": [
1531 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." } 1531 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }
1532 ] 1532 ]
1533 }, 1533 },
1534 { 1534 {
1535 "name": "responseReceived", 1535 "name": "responseReceived",
1536 "description": "Fired when HTTP response is available.", 1536 "description": "Fired when HTTP response is available.",
1537 "parameters": [ 1537 "parameters": [
1538 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1538 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1539 { "name": "frameId", "$ref": "Page.FrameId", "description": "Frame identifier.", "experimental": true }, 1539 { "name": "loaderId", "$ref": "LoaderId", "description": "Lo ader identifier. Empty string if the request is fetched form worker." },
1540 { "name": "loaderId", "$ref": "LoaderId", "description": "Lo ader identifier." },
1541 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1540 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1542 { "name": "type", "$ref": "Page.ResourceType", "description" : "Resource type." }, 1541 { "name": "type", "$ref": "Page.ResourceType", "description" : "Resource type." },
1543 { "name": "response", "$ref": "Response", "description": "Re sponse data." } 1542 { "name": "response", "$ref": "Response", "description": "Re sponse data." },
1543 { "name": "frameId", "optional": true, "$ref": "Page.FrameId ", "description": "Frame identifier.", "experimental": true }
1544 ] 1544 ]
1545 }, 1545 },
1546 { 1546 {
1547 "name": "dataReceived", 1547 "name": "dataReceived",
1548 "description": "Fired when data chunk was received over the netw ork.", 1548 "description": "Fired when data chunk was received over the netw ork.",
1549 "parameters": [ 1549 "parameters": [
1550 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1550 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1551 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1551 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1552 { "name": "dataLength", "type": "integer", "description": "D ata chunk length." }, 1552 { "name": "dataLength", "type": "integer", "description": "D ata chunk length." },
1553 { "name": "encodedDataLength", "type": "integer", "descripti on": "Actual bytes received (might be less than dataLength for compressed encodi ngs)." } 1553 { "name": "encodedDataLength", "type": "integer", "descripti on": "Actual bytes received (might be less than dataLength for compressed encodi ngs)." }
(...skipping 3119 matching lines...) Expand 10 before | Expand all | Expand 10 after
4673 "parameters": [ 4673 "parameters": [
4674 { "name": "windowId", "$ref": "WindowID", "description": "Br owser window id." } 4674 { "name": "windowId", "$ref": "WindowID", "description": "Br owser window id." }
4675 ], 4675 ],
4676 "returns": [ 4676 "returns": [
4677 { "name": "bounds", "$ref": "Bounds", "description": "Bounds information of the window. When window state is 'minimized', the restored windo w position and size are returned." } 4677 { "name": "bounds", "$ref": "Bounds", "description": "Bounds information of the window. When window state is 'minimized', the restored windo w position and size are returned." }
4678 ] 4678 ]
4679 } 4679 }
4680 ] 4680 ]
4681 }] 4681 }]
4682 } 4682 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698