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

Side by Side Diff: src/inspector/js_protocol.json

Issue 2668613002: [inspector] added Debugger.moduleRequested notification
Patch Set: added missing test Created 3 years, 10 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
« no previous file with comments | « src/factory.cc ('k') | src/inspector/v8-debugger.h » ('j') | 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": "2" }, 2 "version": { "major": "1", "minor": "2" },
3 "domains": [ 3 "domains": [
4 { 4 {
5 "domain": "Schema", 5 "domain": "Schema",
6 "description": "Provides information about the protocol schema.", 6 "description": "Provides information about the protocol schema.",
7 "types": [ 7 "types": [
8 { 8 {
9 "id": "Domain", 9 "id": "Domain",
10 "type": "object", 10 "type": "object",
(...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 { "name": "executionContextId", "$ref": "Runtime.ExecutionCo ntextId", "description": "Specifies script creation context." }, 710 { "name": "executionContextId", "$ref": "Runtime.ExecutionCo ntextId", "description": "Specifies script creation context." },
711 { "name": "hash", "type": "string", "description": "Content hash of the script."}, 711 { "name": "hash", "type": "string", "description": "Content hash of the script."},
712 { "name": "executionContextAuxData", "type": "object", "opti onal": true, "description": "Embedder-specific auxiliary data." }, 712 { "name": "executionContextAuxData", "type": "object", "opti onal": true, "description": "Embedder-specific auxiliary data." },
713 { "name": "sourceMapURL", "type": "string", "optional": true , "description": "URL of source map associated with script (if any)." }, 713 { "name": "sourceMapURL", "type": "string", "optional": true , "description": "URL of source map associated with script (if any)." },
714 { "name": "hasSourceURL", "type": "boolean", "optional": tru e, "description": "True, if this script has sourceURL.", "experimental": true }, 714 { "name": "hasSourceURL", "type": "boolean", "optional": tru e, "description": "True, if this script has sourceURL.", "experimental": true },
715 { "name": "isModule", "type": "boolean", "optional": true, " description": "True, if this script is ES6 module.", "experimental": true } 715 { "name": "isModule", "type": "boolean", "optional": true, " description": "True, if this script is ES6 module.", "experimental": true }
716 ], 716 ],
717 "description": "Fired when virtual machine fails to parse the sc ript." 717 "description": "Fired when virtual machine fails to parse the sc ript."
718 }, 718 },
719 { 719 {
720 "name": "moduleRequested",
721 "parameters": [
722 { "name": "refererId", "$ref": "Runtime.ScriptId", "descript ion": "scriptIf of referer module." },
723 { "name": "requestedId", "$ref": "Runtime.ScriptId", "descri ption": "scriptId of requested module." },
724 { "name": "specifier", "type": "string", "description": "Spe cifier passed to import statement."}
725 ],
726 "description": "Fired when one module requests another by specif ier during instantiation."
727 },
728 {
720 "name": "breakpointResolved", 729 "name": "breakpointResolved",
721 "parameters": [ 730 "parameters": [
722 { "name": "breakpointId", "$ref": "BreakpointId", "descripti on": "Breakpoint unique identifier." }, 731 { "name": "breakpointId", "$ref": "BreakpointId", "descripti on": "Breakpoint unique identifier." },
723 { "name": "location", "$ref": "Location", "description": "Ac tual breakpoint location." } 732 { "name": "location", "$ref": "Location", "description": "Ac tual breakpoint location." }
724 ], 733 ],
725 "description": "Fired when breakpoint is resolved to an actual s cript and location." 734 "description": "Fired when breakpoint is resolved to an actual s cript and location."
726 }, 735 },
727 { 736 {
728 "name": "paused", 737 "name": "paused",
729 "parameters": [ 738 "parameters": [
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
995 { 1004 {
996 "name": "heapStatsUpdate", 1005 "name": "heapStatsUpdate",
997 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments", 1006 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments",
998 "parameters": [ 1007 "parameters": [
999 { "name": "statsUpdate", "type": "array", "items": { "type": "integer" }, "description": "An array of triplets. Each triplet describes a fra gment. The first integer is the fragment index, the second integer is a total co unt of objects for the fragment, the third integer is a total size of the object s for the fragment."} 1008 { "name": "statsUpdate", "type": "array", "items": { "type": "integer" }, "description": "An array of triplets. Each triplet describes a fra gment. The first integer is the fragment index, the second integer is a total co unt of objects for the fragment, the third integer is a total size of the object s for the fragment."}
1000 ] 1009 ]
1001 } 1010 }
1002 ] 1011 ]
1003 }] 1012 }]
1004 } 1013 }
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/inspector/v8-debugger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698