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

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: Fixed test crash Created 6 years, 10 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
« no previous file with comments | « Source/devtools/front_end/HeapSnapshotView.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 3584 matching lines...) Expand 10 before | Expand all | Expand 10 after
3595 { "name": "chunk", "type": "string" } 3595 { "name": "chunk", "type": "string" }
3596 ] 3596 ]
3597 }, 3597 },
3598 { 3598 {
3599 "name": "resetProfiles" 3599 "name": "resetProfiles"
3600 }, 3600 },
3601 { 3601 {
3602 "name": "reportHeapSnapshotProgress", 3602 "name": "reportHeapSnapshotProgress",
3603 "parameters": [ 3603 "parameters": [
3604 { "name": "done", "type": "integer" }, 3604 { "name": "done", "type": "integer" },
3605 { "name": "total", "type": "integer" } 3605 { "name": "total", "type": "integer" },
3606 { "name": "finished", "type": "boolean", "optional": true }
3606 ] 3607 ]
3607 }, 3608 },
3608 { 3609 {
3609 "name": "lastSeenObjectId", 3610 "name": "lastSeenObjectId",
3610 "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.", 3611 "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.",
3611 "parameters": [ 3612 "parameters": [
3612 { "name": "lastSeenObjectId", "type": "integer" }, 3613 { "name": "lastSeenObjectId", "type": "integer" },
3613 { "name": "timestamp", "type": "number" } 3614 { "name": "timestamp", "type": "number" }
3614 ] 3615 ]
3615 }, 3616 },
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
4136 ], 4137 ],
4137 "handlers": ["browser", "frontend"] 4138 "handlers": ["browser", "frontend"]
4138 }, 4139 },
4139 { 4140 {
4140 "name": "tracingComplete", 4141 "name": "tracingComplete",
4141 "handlers": ["browser", "frontend"] 4142 "handlers": ["browser", "frontend"]
4142 } 4143 }
4143 ] 4144 ]
4144 }] 4145 }]
4145 } 4146 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/HeapSnapshotView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698