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

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

Issue 722693002: DevTools: show progress when retrieving recorded trace events (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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/timeline/TimelinePanel.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 4360 matching lines...) Expand 10 before | Expand all | Expand 10 after
4371 "handlers": ["browser"] 4371 "handlers": ["browser"]
4372 }, 4372 },
4373 { 4373 {
4374 "name": "tracingComplete", 4374 "name": "tracingComplete",
4375 "description": "Signals that tracing is stopped and there is no trace buffers pending flush, all data were delivered via dataCollected events.", 4375 "description": "Signals that tracing is stopped and there is no trace buffers pending flush, all data were delivered via dataCollected events.",
4376 "handlers": ["browser"] 4376 "handlers": ["browser"]
4377 }, 4377 },
4378 { 4378 {
4379 "name": "bufferUsage", 4379 "name": "bufferUsage",
4380 "parameters": [ 4380 "parameters": [
4381 { "name": "value", "type": "number", "description": "A numbe r in range [0..1] that indicates the used size of event buffer as a fraction of its total size." } 4381 { "name": "percentFull", "type": "number", "optional": true, "description": "A number in range [0..1] that indicates the used size of event buffer as a fraction of its total size." },
4382 { "name": "eventCount", "type": "number", "optional": true, "description": "An approximate number of events in the trace log." },
4383 { "name": "value", "type": "number", "optional": true, "desc ription": "A number in range [0..1] that indicates the used size of event buffer as a fraction of its total size." }
4382 ], 4384 ],
4383 "handlers": ["browser"] 4385 "handlers": ["browser"]
4384 } 4386 }
4385 ] 4387 ]
4386 }, 4388 },
4387 { 4389 {
4388 "domain": "Power", 4390 "domain": "Power",
4389 "hidden": true, 4391 "hidden": true,
4390 "types": [ 4392 "types": [
4391 { 4393 {
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
4554 { "name": "isRunning", "type": "boolean", "description": "If the animation player is still running." } 4556 { "name": "isRunning", "type": "boolean", "description": "If the animation player is still running." }
4555 ], 4557 ],
4556 "description": "Gets the state of an AnimationPlayer.", 4558 "description": "Gets the state of an AnimationPlayer.",
4557 "hidden": true 4559 "hidden": true
4558 } 4560 }
4559 ], 4561 ],
4560 "events": [ 4562 "events": [
4561 ] 4563 ]
4562 }] 4564 }]
4563 } 4565 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/timeline/TimelinePanel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698