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

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
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 4342 matching lines...) Expand 10 before | Expand all | Expand 10 after
4353 "handlers": ["browser"] 4353 "handlers": ["browser"]
4354 }, 4354 },
4355 { 4355 {
4356 "name": "tracingComplete", 4356 "name": "tracingComplete",
4357 "description": "Signals that tracing is stopped and there is no trace buffers pending flush, all data were delivered via dataCollected events.", 4357 "description": "Signals that tracing is stopped and there is no trace buffers pending flush, all data were delivered via dataCollected events.",
4358 "handlers": ["browser"] 4358 "handlers": ["browser"]
4359 }, 4359 },
4360 { 4360 {
4361 "name": "bufferUsage", 4361 "name": "bufferUsage",
4362 "parameters": [ 4362 "parameters": [
4363 { "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." } 4363 { "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." },
4364 { "name": "eventCount", "type": "number", "description": "A number that indicates the total used size of event buffer as a number of events. " }
alph 2014/11/12 15:41:11 the description is a bit confusing. Is it a number
yurys 2014/11/17 12:59:37 Done.
4364 ], 4365 ],
4365 "handlers": ["browser"] 4366 "handlers": ["browser"]
4366 } 4367 }
4367 ] 4368 ]
4368 }, 4369 },
4369 { 4370 {
4370 "domain": "Power", 4371 "domain": "Power",
4371 "hidden": true, 4372 "hidden": true,
4372 "types": [ 4373 "types": [
4373 { 4374 {
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
4534 { "name": "isRunning", "type": "boolean", "description": "If the animation player is still running." } 4535 { "name": "isRunning", "type": "boolean", "description": "If the animation player is still running." }
4535 ], 4536 ],
4536 "description": "Gets the state of an AnimationPlayer.", 4537 "description": "Gets the state of an AnimationPlayer.",
4537 "hidden": true 4538 "hidden": true
4538 } 4539 }
4539 ], 4540 ],
4540 "events": [ 4541 "events": [
4541 ] 4542 ]
4542 }] 4543 }]
4543 } 4544 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698