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

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 1088 matching lines...) Expand 10 before | Expand all | Expand 10 after
1099 { 1099 {
1100 "name": "clearBrowserCookies", 1100 "name": "clearBrowserCookies",
1101 "description": "Clears browser cookies." 1101 "description": "Clears browser cookies."
1102 }, 1102 },
1103 { 1103 {
1104 "name": "setCacheDisabled", 1104 "name": "setCacheDisabled",
1105 "parameters": [ 1105 "parameters": [
1106 { "name": "cacheDisabled", "type": "boolean", "description": "Cache disabled state." } 1106 { "name": "cacheDisabled", "type": "boolean", "description": "Cache disabled state." }
1107 ], 1107 ],
1108 "description": "Toggles ignoring cache for each request. If <cod e>true</code>, cache will not be used." 1108 "description": "Toggles ignoring cache for each request. If <cod e>true</code>, cache will not be used."
1109 }, 1109 },
1110 { 1110 {
1111 "name": "loadResourceForFrontend", 1111 "name": "loadResourceForFrontend",
1112 "async": true, 1112 "async": true,
1113 "parameters": [ 1113 "parameters": [
1114 { "name": "frameId", "$ref": "Page.FrameId", "description": "Frame to load the resource from." }, 1114 { "name": "frameId", "$ref": "Page.FrameId", "description": "Frame to load the resource from." },
1115 { "name": "url", "type": "string", "description": "URL of th e resource to load." }, 1115 { "name": "url", "type": "string", "description": "URL of th e resource to load." },
1116 { "name": "requestHeaders", "$ref": "Network.Headers", "opti onal": true, "description": "Request headers." } 1116 { "name": "requestHeaders", "$ref": "Network.Headers", "opti onal": true, "description": "Request headers." }
1117 ], 1117 ],
1118 "returns": [ 1118 "returns": [
1119 { "name": "statusCode", "type": "number", "description": "HT TP status code." }, 1119 { "name": "statusCode", "type": "number", "description": "HT TP status code." },
(...skipping 2128 matching lines...) Expand 10 before | Expand all | Expand 10 after
3248 }, 3248 },
3249 { 3249 {
3250 "name": "scriptParsed", 3250 "name": "scriptParsed",
3251 "parameters": [ 3251 "parameters": [
3252 { "name": "scriptId", "$ref": "ScriptId", "description": "Id entifier of the script parsed." }, 3252 { "name": "scriptId", "$ref": "ScriptId", "description": "Id entifier of the script parsed." },
3253 { "name": "url", "type": "string", "description": "URL or na me of the script parsed (if any)." }, 3253 { "name": "url", "type": "string", "description": "URL or na me of the script parsed (if any)." },
3254 { "name": "startLine", "type": "integer", "description": "Li ne offset of the script within the resource with given URL (for script tags)." } , 3254 { "name": "startLine", "type": "integer", "description": "Li ne offset of the script within the resource with given URL (for script tags)." } ,
3255 { "name": "startColumn", "type": "integer", "description": " Column offset of the script within the resource with given URL." }, 3255 { "name": "startColumn", "type": "integer", "description": " Column offset of the script within the resource with given URL." },
3256 { "name": "endLine", "type": "integer", "description": "Last line of the script." }, 3256 { "name": "endLine", "type": "integer", "description": "Last line of the script." },
3257 { "name": "endColumn", "type": "integer", "description": "Le ngth of the last line of the script." }, 3257 { "name": "endColumn", "type": "integer", "description": "Le ngth of the last line of the script." },
3258 { "name": "isContentScript", "type": "boolean", "optional": true, "description": "Determines whether this script is a user extension script. " }, 3258 { "name": "isContentScript", "type": "boolean", "optional": true, "description": "Determines whether this script is a user extension script. " },
3259 { "name": "sourceMapURL", "type": "string", "optional": true , "description": "URL of source map associated with script (if any)." }, 3259 { "name": "sourceMapURL", "type": "string", "optional": true , "description": "URL of source map associated with script (if any)." },
3260 { "name": "hasSourceURL", "type": "boolean", "optional": tru e, "description": "True, if this script has sourceURL.", "hidden": true }, 3260 { "name": "hasSourceURL", "type": "boolean", "optional": tru e, "description": "True, if this script has sourceURL.", "hidden": true },
3261 { "name": "language", "type": "string", "optional": true, "d escription": "Programming language of the script" }, 3261 { "name": "language", "type": "string", "optional": true, "d escription": "Programming language of the script" },
3262 { "name": "libraryId", "type": "integer", "optional": true, "description": "Id of the library/module included in the context." } 3262 { "name": "libraryId", "type": "integer", "optional": true, "description": "Id of the library/module included in the context." }
3263 ], 3263 ],
3264 "description": "Fired when virtual machine parses script. This e vent is also fired for all known and uncollected scripts upon enabling debugger. " 3264 "description": "Fired when virtual machine parses script. This e vent is also fired for all known and uncollected scripts upon enabling debugger. "
3265 }, 3265 },
3266 { 3266 {
3267 "name": "scriptFailedToParse", 3267 "name": "scriptFailedToParse",
3268 "parameters": [ 3268 "parameters": [
(...skipping 743 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/devtools/front_end/inspector.js ('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