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

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

Issue 665123008: [DevTools] Make all parameters of Tracing.start optional. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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/core/inspector/InspectorTracingAgent.cpp ('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 4293 matching lines...) Expand 10 before | Expand all | Expand 10 after
4304 }, 4304 },
4305 { 4305 {
4306 "domain": "Tracing", 4306 "domain": "Tracing",
4307 "hidden": true, 4307 "hidden": true,
4308 "commands": [ 4308 "commands": [
4309 { 4309 {
4310 "name": "start", 4310 "name": "start",
4311 "async": true, 4311 "async": true,
4312 "description": "Start trace events collection.", 4312 "description": "Start trace events collection.",
4313 "parameters": [ 4313 "parameters": [
4314 { "name": "categories", "type": "string", "description": "Ca tegory/tag filter" }, 4314 { "name": "categories", "type": "string", "optional": true, "description": "Category/tag filter" },
4315 { "name": "options", "type": "string", "description": "Traci ng options" }, 4315 { "name": "options", "type": "string", "optional": true, "de scription": "Tracing options" },
4316 { "name": "bufferUsageReportingInterval", "type": "number", "optional": true, "description": "If set, the agent will issue bufferUsage event s at this interval, specified in milliseconds" } 4316 { "name": "bufferUsageReportingInterval", "type": "number", "optional": true, "description": "If set, the agent will issue bufferUsage event s at this interval, specified in milliseconds" }
4317 ], 4317 ],
4318 "handlers": ["browser", "renderer"] 4318 "handlers": ["browser", "renderer"]
4319 }, 4319 },
4320 { 4320 {
4321 "name": "end", 4321 "name": "end",
4322 "async": true, 4322 "async": true,
4323 "description": "Stop trace events collection.", 4323 "description": "Stop trace events collection.",
4324 "handlers": ["browser", "renderer"] 4324 "handlers": ["browser", "renderer"]
4325 }, 4325 },
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
4505 { "name": "isRunning", "type": "boolean", "description": "If the animation player is still running." } 4505 { "name": "isRunning", "type": "boolean", "description": "If the animation player is still running." }
4506 ], 4506 ],
4507 "description": "Gets the state of an AnimationPlayer.", 4507 "description": "Gets the state of an AnimationPlayer.",
4508 "hidden": true 4508 "hidden": true
4509 } 4509 }
4510 ], 4510 ],
4511 "events": [ 4511 "events": [
4512 ] 4512 ]
4513 }] 4513 }]
4514 } 4514 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorTracingAgent.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698