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

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

Issue 214523005: DevTools: report timeline progress while recording. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/timelinePanel.css ('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 2778 matching lines...) Expand 10 before | Expand all | Expand 10 after
2789 ], 2789 ],
2790 "events": [ 2790 "events": [
2791 { 2791 {
2792 "name": "eventRecorded", 2792 "name": "eventRecorded",
2793 "parameters": [ 2793 "parameters": [
2794 { "name": "record", "$ref": "TimelineEvent", "description": "Timeline event record data." } 2794 { "name": "record", "$ref": "TimelineEvent", "description": "Timeline event record data." }
2795 ], 2795 ],
2796 "description": "Fired for every instrumentation event while time line is started." 2796 "description": "Fired for every instrumentation event while time line is started."
2797 }, 2797 },
2798 { 2798 {
2799 "name": "progress",
2800 "parameters": [
2801 { "name": "count", "type": "number" }
2802 ],
2803 "hidden": true
2804 },
2805 {
2799 "name": "started", 2806 "name": "started",
2800 "parameters": [ 2807 "parameters": [
2801 { "name": "consoleTimeline", "type": "boolean", "optional": true, "description": "If specified, identifies that timeline was started using c onsole.timeline() call." } 2808 { "name": "consoleTimeline", "type": "boolean", "optional": true, "description": "If specified, identifies that timeline was started using c onsole.timeline() call." }
2802 ], 2809 ],
2803 "description": "Fired when timeline is started.", 2810 "description": "Fired when timeline is started.",
2804 "hidden": true 2811 "hidden": true
2805 }, 2812 },
2806 { 2813 {
2807 "name": "stopped", 2814 "name": "stopped",
2808 "parameters": [ 2815 "parameters": [
(...skipping 1261 matching lines...) Expand 10 before | Expand all | Expand 10 after
4070 { 4077 {
4071 "name": "dataAvailable", 4078 "name": "dataAvailable",
4072 "parameters": [ 4079 "parameters": [
4073 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4080 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4074 ], 4081 ],
4075 "handlers": ["browser", "frontend"] 4082 "handlers": ["browser", "frontend"]
4076 } 4083 }
4077 ] 4084 ]
4078 }] 4085 }]
4079 } 4086 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/timelinePanel.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698