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

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

Issue 27000005: Remove HeapProfiler.finishHeapSnapshot event from remote debugging protocol (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed heap profiler test Created 7 years, 2 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 3565 matching lines...) Expand 10 before | Expand all | Expand 10 after
3576 ] 3576 ]
3577 }, 3577 },
3578 { 3578 {
3579 "name": "addHeapSnapshotChunk", 3579 "name": "addHeapSnapshotChunk",
3580 "parameters": [ 3580 "parameters": [
3581 { "name": "uid", "type": "integer" }, 3581 { "name": "uid", "type": "integer" },
3582 { "name": "chunk", "type": "string" } 3582 { "name": "chunk", "type": "string" }
3583 ] 3583 ]
3584 }, 3584 },
3585 { 3585 {
3586 "name": "finishHeapSnapshot",
3587 "parameters": [
3588 { "name": "uid", "type": "integer" }
3589 ]
3590 },
3591 {
3592 "name": "resetProfiles" 3586 "name": "resetProfiles"
3593 }, 3587 },
3594 { 3588 {
3595 "name": "reportHeapSnapshotProgress", 3589 "name": "reportHeapSnapshotProgress",
3596 "parameters": [ 3590 "parameters": [
3597 { "name": "done", "type": "integer" }, 3591 { "name": "done", "type": "integer" },
3598 { "name": "total", "type": "integer" } 3592 { "name": "total", "type": "integer" }
3599 ] 3593 ]
3600 }, 3594 },
3601 { 3595 {
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
4053 "parameters": [ 4047 "parameters": [
4054 { "name": "value", "type": "array", "items": { "type": "obje ct" } } 4048 { "name": "value", "type": "array", "items": { "type": "obje ct" } }
4055 ] 4049 ]
4056 }, 4050 },
4057 { 4051 {
4058 "name": "tracingComplete" 4052 "name": "tracingComplete"
4059 } 4053 }
4060 ] 4054 ]
4061 }] 4055 }]
4062 } 4056 }
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