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

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

Issue 2723273002: [inspector] introduced Debugger.scheduleStepIntoAsync (Closed)
Patch Set: override current scheduled step into async if presented Created 3 years, 9 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
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 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
569 }, 569 },
570 { 570 {
571 "name": "stepOut", 571 "name": "stepOut",
572 "description": "Steps out of the function call." 572 "description": "Steps out of the function call."
573 }, 573 },
574 { 574 {
575 "name": "pause", 575 "name": "pause",
576 "description": "Stops on the next JavaScript statement." 576 "description": "Stops on the next JavaScript statement."
577 }, 577 },
578 { 578 {
579 "name": "scheduleStepIntoAsync",
580 "description": "Steps into next scheduled async task if any is s cheduled before next pause.",
dgozman 2017/03/01 23:03:57 Let's describe when this one returns.
kozy 2017/03/02 00:53:03 Done.
581 "experimental": true
582 },
583 {
579 "name": "resume", 584 "name": "resume",
580 "description": "Resumes JavaScript execution." 585 "description": "Resumes JavaScript execution."
581 }, 586 },
582 { 587 {
583 "name": "searchInContent", 588 "name": "searchInContent",
584 "parameters": [ 589 "parameters": [
585 { "name": "scriptId", "$ref": "Runtime.ScriptId", "descripti on": "Id of the script to search in." }, 590 { "name": "scriptId", "$ref": "Runtime.ScriptId", "descripti on": "Id of the script to search in." },
586 { "name": "query", "type": "string", "description": "String to search for." }, 591 { "name": "query", "type": "string", "description": "String to search for." },
587 { "name": "caseSensitive", "type": "boolean", "optional": tr ue, "description": "If true, search is case sensitive." }, 592 { "name": "caseSensitive", "type": "boolean", "optional": tr ue, "description": "If true, search is case sensitive." },
588 { "name": "isRegex", "type": "boolean", "optional": true, "d escription": "If true, treats string parameter as regex." } 593 { "name": "isRegex", "type": "boolean", "optional": true, "d escription": "If true, treats string parameter as regex." }
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
1064 { 1069 {
1065 "name": "heapStatsUpdate", 1070 "name": "heapStatsUpdate",
1066 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments", 1071 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments",
1067 "parameters": [ 1072 "parameters": [
1068 { "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."} 1073 { "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."}
1069 ] 1074 ]
1070 } 1075 }
1071 ] 1076 ]
1072 }] 1077 }]
1073 } 1078 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698