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

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

Issue 247513002: Timeline: produce session cookie when timeline is started (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: use IndetifiersFactory instead of directly getting processId Created 6 years, 8 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/TracingModel.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 2790 matching lines...) Expand 10 before | Expand all | Expand 10 after
2801 { 2801 {
2802 "name": "progress", 2802 "name": "progress",
2803 "parameters": [ 2803 "parameters": [
2804 { "name": "count", "type": "number" } 2804 { "name": "count", "type": "number" }
2805 ], 2805 ],
2806 "hidden": true 2806 "hidden": true
2807 }, 2807 },
2808 { 2808 {
2809 "name": "started", 2809 "name": "started",
2810 "parameters": [ 2810 "parameters": [
2811 { "name": "sessionId", "type": "string", "description": "A s ystem-unique identifier that is emitted in some timeline trace events to disting uish events coming from the inspected page." },
2811 { "name": "consoleTimeline", "type": "boolean", "optional": true, "description": "If specified, identifies that timeline was started using c onsole.timeline() call." } 2812 { "name": "consoleTimeline", "type": "boolean", "optional": true, "description": "If specified, identifies that timeline was started using c onsole.timeline() call." }
2812 ], 2813 ],
2813 "description": "Fired when timeline is started.", 2814 "description": "Fired when timeline is started.",
2814 "hidden": true 2815 "hidden": true
2815 }, 2816 },
2816 { 2817 {
2817 "name": "stopped", 2818 "name": "stopped",
2818 "parameters": [ 2819 "parameters": [
2819 { "name": "consoleTimeline", "type": "boolean", "optional": true, "description": "If specified, identifies that timeline was started using c onsole.timeline() call." } 2820 { "name": "consoleTimeline", "type": "boolean", "optional": true, "description": "If specified, identifies that timeline was started using c onsole.timeline() call." }
2820 ], 2821 ],
(...skipping 1277 matching lines...) Expand 10 before | Expand all | Expand 10 after
4098 { 4099 {
4099 "name": "dataAvailable", 4100 "name": "dataAvailable",
4100 "parameters": [ 4101 "parameters": [
4101 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4102 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4102 ], 4103 ],
4103 "handlers": ["browser", "frontend"] 4104 "handlers": ["browser", "frontend"]
4104 } 4105 }
4105 ] 4106 ]
4106 }] 4107 }]
4107 } 4108 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/TracingModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698