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

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

Issue 98273008: [DevTools] Send heap snapshot to the frontend immediatly when it is ready (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 12 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 | Annotate | Revision Log
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 3586 matching lines...) Expand 10 before | Expand all | Expand 10 after
3597 { "name": "chunk", "type": "string" } 3597 { "name": "chunk", "type": "string" }
3598 ] 3598 ]
3599 }, 3599 },
3600 { 3600 {
3601 "name": "resetProfiles" 3601 "name": "resetProfiles"
3602 }, 3602 },
3603 { 3603 {
3604 "name": "reportHeapSnapshotProgress", 3604 "name": "reportHeapSnapshotProgress",
3605 "parameters": [ 3605 "parameters": [
3606 { "name": "done", "type": "integer" }, 3606 { "name": "done", "type": "integer" },
3607 { "name": "total", "type": "integer" } 3607 { "name": "total", "type": "integer" },
3608 { "name": "finished", "type": "boolean", "optional": true }
3608 ] 3609 ]
3609 }, 3610 },
3610 { 3611 {
3611 "name": "lastSeenObjectId", 3612 "name": "lastSeenObjectId",
3612 "description": "If heap objects tracking has been started then b ackend regulary sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more hea pStatsUpdate events will be sent before a new lastSeenObjectId event.", 3613 "description": "If heap objects tracking has been started then b ackend regulary sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more hea pStatsUpdate events will be sent before a new lastSeenObjectId event.",
3613 "parameters": [ 3614 "parameters": [
3614 { "name": "lastSeenObjectId", "type": "integer" }, 3615 { "name": "lastSeenObjectId", "type": "integer" },
3615 { "name": "timestamp", "type": "number" } 3616 { "name": "timestamp", "type": "number" }
3616 ] 3617 ]
3617 }, 3618 },
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
4118 ], 4119 ],
4119 "handlers": ["browser", "frontend"] 4120 "handlers": ["browser", "frontend"]
4120 }, 4121 },
4121 { 4122 {
4122 "name": "tracingComplete", 4123 "name": "tracingComplete",
4123 "handlers": ["browser", "frontend"] 4124 "handlers": ["browser", "frontend"]
4124 } 4125 }
4125 ] 4126 ]
4126 }] 4127 }]
4127 } 4128 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698