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

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

Issue 104433004: Enable VM service inside Dartium Renderer processes (Closed) Base URL: svn://svn.chromium.org/multivm/branches/1650/blink
Patch Set: Created 7 years 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 4001 matching lines...) Expand 10 before | Expand all | Expand 10 after
4012 ] 4012 ]
4013 } 4013 }
4014 ], 4014 ],
4015 "events": [ 4015 "events": [
4016 { 4016 {
4017 "name": "layerTreeDidChange" 4017 "name": "layerTreeDidChange"
4018 } 4018 }
4019 ] 4019 ]
4020 }, 4020 },
4021 { 4021 {
4022 "domain": "Dart",
4023 "types": [],
4024 "commands": [
4025 {
4026 "name": "observatoryQuery",
4027 "parameters": [
4028 { "name": "id", "type": "string" },
4029 { "name": "query", "type": "string" }
4030 ]
4031 }
4032 ],
4033 "events": [
4034 {
4035 "name": "observatoryData",
4036 "parameters": [
4037 { "name": "id", "type": "string" },
4038 { "name": "data", "type": "string" }
4039 ]
4040 }
4041 ]
4042 },
4043 {
4022 "domain": "Tracing", 4044 "domain": "Tracing",
4023 "hidden": true, 4045 "hidden": true,
4024 "commands": [ 4046 "commands": [
4025 { 4047 {
4026 "name": "start", 4048 "name": "start",
4027 "description": "Strart trace events collection.", 4049 "description": "Strart trace events collection.",
4028 "parameters": [ 4050 "parameters": [
4029 { "name": "categories", "type": "string", "description": "Ca tegory/tag filter" } 4051 { "name": "categories", "type": "string", "description": "Ca tegory/tag filter" }
4030 ] 4052 ]
4031 }, 4053 },
4032 { 4054 {
4033 "name": "end", 4055 "name": "end",
4034 "description": "Stop trace events collection." 4056 "description": "Stop trace events collection."
4035 } 4057 }
4036 ], 4058 ],
4037 "events": [ 4059 "events": [
4038 { 4060 {
4039 "name": "dataCollected", 4061 "name": "dataCollected",
4040 "parameters": [ 4062 "parameters": [
4041 { "name": "value", "type": "array", "items": { "type": "obje ct" } } 4063 { "name": "value", "type": "array", "items": { "type": "obje ct" } }
4042 ] 4064 ]
4043 }, 4065 },
4044 { 4066 {
4045 "name": "tracingComplete" 4067 "name": "tracingComplete"
4046 } 4068 }
4047 ] 4069 ]
4048 }] 4070 }]
4049 } 4071 }
OLDNEW
« Source/bindings/dart/DartServiceInternal.cpp ('K') | « Source/devtools/front_end/inspector.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698