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

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

Issue 1409223006: DevTools: replace content provider when re-adding into network project (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Same with isLiveEdit flag in a scriptParsed. Created 5 years, 1 month 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
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 3939 matching lines...) Expand 10 before | Expand all | Expand 10 after
3950 "name": "scriptParsed", 3950 "name": "scriptParsed",
3951 "parameters": [ 3951 "parameters": [
3952 { "name": "scriptId", "$ref": "ScriptId", "description": "Id entifier of the script parsed." }, 3952 { "name": "scriptId", "$ref": "ScriptId", "description": "Id entifier of the script parsed." },
3953 { "name": "url", "type": "string", "description": "URL or na me of the script parsed (if any)." }, 3953 { "name": "url", "type": "string", "description": "URL or na me of the script parsed (if any)." },
3954 { "name": "startLine", "type": "integer", "description": "Li ne offset of the script within the resource with given URL (for script tags)." } , 3954 { "name": "startLine", "type": "integer", "description": "Li ne offset of the script within the resource with given URL (for script tags)." } ,
3955 { "name": "startColumn", "type": "integer", "description": " Column offset of the script within the resource with given URL." }, 3955 { "name": "startColumn", "type": "integer", "description": " Column offset of the script within the resource with given URL." },
3956 { "name": "endLine", "type": "integer", "description": "Last line of the script." }, 3956 { "name": "endLine", "type": "integer", "description": "Last line of the script." },
3957 { "name": "endColumn", "type": "integer", "description": "Le ngth of the last line of the script." }, 3957 { "name": "endColumn", "type": "integer", "description": "Le ngth of the last line of the script." },
3958 { "name": "isContentScript", "type": "boolean", "optional": true, "description": "Determines whether this script is a user extension script. " }, 3958 { "name": "isContentScript", "type": "boolean", "optional": true, "description": "Determines whether this script is a user extension script. " },
3959 { "name": "isInternalScript", "type": "boolean", "optional": true, "description": "Determines whether this script is an internal script.", " hidden": true }, 3959 { "name": "isInternalScript", "type": "boolean", "optional": true, "description": "Determines whether this script is an internal script.", " hidden": true },
3960 { "name": "isLiveEdit", "type": "boolean", "optional": true, "description": "True, if this script is generated as a result of the live edit operation.", "hidden": true },
3960 { "name": "sourceMapURL", "type": "string", "optional": true , "description": "URL of source map associated with script (if any)." }, 3961 { "name": "sourceMapURL", "type": "string", "optional": true , "description": "URL of source map associated with script (if any)." },
3961 { "name": "hasSourceURL", "type": "boolean", "optional": tru e, "description": "True, if this script has sourceURL.", "hidden": true } 3962 { "name": "hasSourceURL", "type": "boolean", "optional": tru e, "description": "True, if this script has sourceURL.", "hidden": true }
3962 ], 3963 ],
3963 "description": "Fired when virtual machine parses script. This e vent is also fired for all known and uncollected scripts upon enabling debugger. " 3964 "description": "Fired when virtual machine parses script. This e vent is also fired for all known and uncollected scripts upon enabling debugger. "
3964 }, 3965 },
3965 { 3966 {
3966 "name": "scriptFailedToParse", 3967 "name": "scriptFailedToParse",
3967 "parameters": [ 3968 "parameters": [
3968 { "name": "scriptId", "$ref": "ScriptId", "description": "Id entifier of the script parsed." }, 3969 { "name": "scriptId", "$ref": "ScriptId", "description": "Id entifier of the script parsed." },
3969 { "name": "url", "type": "string", "description": "URL or na me of the script parsed (if any)." }, 3970 { "name": "url", "type": "string", "description": "URL or na me of the script parsed (if any)." },
(...skipping 1328 matching lines...) Expand 10 before | Expand all | Expand 10 after
5298 ], 5299 ],
5299 "returns": [ 5300 "returns": [
5300 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5301 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5301 ], 5302 ],
5302 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5303 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5303 "hidden": true 5304 "hidden": true
5304 } 5305 }
5305 ] 5306 ]
5306 }] 5307 }]
5307 } 5308 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698