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

Side by Side Diff: third_party/WebKit/Source/platform/v8_inspector/js_protocol.json

Issue 2247483003: [DevTools] Removed isInternalScript flag from protocol (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove-internal-script-flag
Patch Set: Created 4 years, 4 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 | « third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.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": "Runtime", 4 "domain": "Runtime",
5 "description": "Runtime domain exposes JavaScript runtime by means of re mote evaluation and mirror objects. Evaluation results are returned as mirror ob ject that expose object type, string representation and unique identifier that c an be used for further object reference. Original objects are maintained in memo ry unless they are either explicitly released or are released along with the oth er objects in their object group.", 5 "description": "Runtime domain exposes JavaScript runtime by means of re mote evaluation and mirror objects. Evaluation results are returned as mirror ob ject that expose object type, string representation and unique identifier that c an be used for further object reference. Original objects are maintained in memo ry unless they are either explicitly released or are released along with the oth er objects in their object group.",
6 "types": [ 6 "types": [
7 { 7 {
8 "id": "ScriptId", 8 "id": "ScriptId",
9 "type": "string", 9 "type": "string",
10 "description": "Unique script identifier." 10 "description": "Unique script identifier."
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 "parameters": [ 672 "parameters": [
673 { "name": "scriptId", "$ref": "Runtime.ScriptId", "descripti on": "Identifier of the script parsed." }, 673 { "name": "scriptId", "$ref": "Runtime.ScriptId", "descripti on": "Identifier of the script parsed." },
674 { "name": "url", "type": "string", "description": "URL or na me of the script parsed (if any)." }, 674 { "name": "url", "type": "string", "description": "URL or na me of the script parsed (if any)." },
675 { "name": "startLine", "type": "integer", "description": "Li ne offset of the script within the resource with given URL (for script tags)." } , 675 { "name": "startLine", "type": "integer", "description": "Li ne offset of the script within the resource with given URL (for script tags)." } ,
676 { "name": "startColumn", "type": "integer", "description": " Column offset of the script within the resource with given URL." }, 676 { "name": "startColumn", "type": "integer", "description": " Column offset of the script within the resource with given URL." },
677 { "name": "endLine", "type": "integer", "description": "Last line of the script." }, 677 { "name": "endLine", "type": "integer", "description": "Last line of the script." },
678 { "name": "endColumn", "type": "integer", "description": "Le ngth of the last line of the script." }, 678 { "name": "endColumn", "type": "integer", "description": "Le ngth of the last line of the script." },
679 { "name": "executionContextId", "$ref": "Runtime.ExecutionCo ntextId", "description": "Specifies script creation context.", "experimental": t rue }, 679 { "name": "executionContextId", "$ref": "Runtime.ExecutionCo ntextId", "description": "Specifies script creation context.", "experimental": t rue },
680 { "name": "hash", "type": "string", "experimental": true, "d escription": "Content hash of the script."}, 680 { "name": "hash", "type": "string", "experimental": true, "d escription": "Content hash of the script."},
681 { "name": "executionContextAuxData", "type": "object", "opti onal": true, "description": "Embedder-specific auxiliary data.", "experimental": true }, 681 { "name": "executionContextAuxData", "type": "object", "opti onal": true, "description": "Embedder-specific auxiliary data.", "experimental": true },
682 { "name": "isInternalScript", "type": "boolean", "optional": true, "description": "Determines whether this script is an internal script.", " experimental": true },
683 { "name": "isLiveEdit", "type": "boolean", "optional": true, "description": "True, if this script is generated as a result of the live edit operation.", "experimental": true }, 682 { "name": "isLiveEdit", "type": "boolean", "optional": true, "description": "True, if this script is generated as a result of the live edit operation.", "experimental": true },
684 { "name": "sourceMapURL", "type": "string", "optional": true , "description": "URL of source map associated with script (if any)." }, 683 { "name": "sourceMapURL", "type": "string", "optional": true , "description": "URL of source map associated with script (if any)." },
685 { "name": "hasSourceURL", "type": "boolean", "optional": tru e, "description": "True, if this script has sourceURL.", "experimental": true } 684 { "name": "hasSourceURL", "type": "boolean", "optional": tru e, "description": "True, if this script has sourceURL.", "experimental": true }
686 ], 685 ],
687 "description": "Fired when virtual machine parses script. This e vent is also fired for all known and uncollected scripts upon enabling debugger. " 686 "description": "Fired when virtual machine parses script. This e vent is also fired for all known and uncollected scripts upon enabling debugger. "
688 }, 687 },
689 { 688 {
690 "name": "scriptFailedToParse", 689 "name": "scriptFailedToParse",
691 "parameters": [ 690 "parameters": [
692 { "name": "scriptId", "$ref": "Runtime.ScriptId", "descripti on": "Identifier of the script parsed." }, 691 { "name": "scriptId", "$ref": "Runtime.ScriptId", "descripti on": "Identifier of the script parsed." },
693 { "name": "url", "type": "string", "description": "URL or na me of the script parsed (if any)." }, 692 { "name": "url", "type": "string", "description": "URL or na me of the script parsed (if any)." },
694 { "name": "startLine", "type": "integer", "description": "Li ne offset of the script within the resource with given URL (for script tags)." } , 693 { "name": "startLine", "type": "integer", "description": "Li ne offset of the script within the resource with given URL (for script tags)." } ,
695 { "name": "startColumn", "type": "integer", "description": " Column offset of the script within the resource with given URL." }, 694 { "name": "startColumn", "type": "integer", "description": " Column offset of the script within the resource with given URL." },
696 { "name": "endLine", "type": "integer", "description": "Last line of the script." }, 695 { "name": "endLine", "type": "integer", "description": "Last line of the script." },
697 { "name": "endColumn", "type": "integer", "description": "Le ngth of the last line of the script." }, 696 { "name": "endColumn", "type": "integer", "description": "Le ngth of the last line of the script." },
698 { "name": "executionContextId", "$ref": "Runtime.ExecutionCo ntextId", "description": "Specifies script creation context.", "experimental": t rue }, 697 { "name": "executionContextId", "$ref": "Runtime.ExecutionCo ntextId", "description": "Specifies script creation context.", "experimental": t rue },
699 { "name": "hash", "type": "string", "experimental": true, "d escription": "Content hash of the script."}, 698 { "name": "hash", "type": "string", "experimental": true, "d escription": "Content hash of the script."},
700 { "name": "executionContextAuxData", "type": "object", "opti onal": true, "description": "Embedder-specific auxiliary data.", "experimental": true }, 699 { "name": "executionContextAuxData", "type": "object", "opti onal": true, "description": "Embedder-specific auxiliary data.", "experimental": true },
701 { "name": "isInternalScript", "type": "boolean", "optional": true, "description": "Determines whether this script is an internal script.", " experimental": true },
702 { "name": "sourceMapURL", "type": "string", "optional": true , "description": "URL of source map associated with script (if any)." }, 700 { "name": "sourceMapURL", "type": "string", "optional": true , "description": "URL of source map associated with script (if any)." },
703 { "name": "hasSourceURL", "type": "boolean", "optional": tru e, "description": "True, if this script has sourceURL.", "experimental": true } 701 { "name": "hasSourceURL", "type": "boolean", "optional": tru e, "description": "True, if this script has sourceURL.", "experimental": true }
704 ], 702 ],
705 "description": "Fired when virtual machine fails to parse the sc ript." 703 "description": "Fired when virtual machine fails to parse the sc ript."
706 }, 704 },
707 { 705 {
708 "name": "breakpointResolved", 706 "name": "breakpointResolved",
709 "parameters": [ 707 "parameters": [
710 { "name": "breakpointId", "$ref": "BreakpointId", "descripti on": "Breakpoint unique identifier." }, 708 { "name": "breakpointId", "$ref": "BreakpointId", "descripti on": "Breakpoint unique identifier." },
711 { "name": "location", "$ref": "Location", "description": "Ac tual breakpoint location." } 709 { "name": "location", "$ref": "Location", "description": "Ac tual breakpoint location." }
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
997 { 995 {
998 "name": "heapStatsUpdate", 996 "name": "heapStatsUpdate",
999 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments", 997 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments",
1000 "parameters": [ 998 "parameters": [
1001 { "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."} 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."}
1002 ] 1000 ]
1003 } 1001 }
1004 ] 1002 ]
1005 }] 1003 }]
1006 } 1004 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698