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

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

Issue 2723273002: [inspector] introduced Debugger.scheduleStepIntoAsync (Closed)
Patch Set: fixed 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 560 matching lines...) Expand 10 before | Expand all | Expand 10 after
571 }, 571 },
572 { 572 {
573 "name": "stepOut", 573 "name": "stepOut",
574 "description": "Steps out of the function call." 574 "description": "Steps out of the function call."
575 }, 575 },
576 { 576 {
577 "name": "pause", 577 "name": "pause",
578 "description": "Stops on the next JavaScript statement." 578 "description": "Stops on the next JavaScript statement."
579 }, 579 },
580 { 580 {
581 "name": "scheduleStepIntoAsync",
582 "description": "Steps into next scheduled async task if any is s cheduled before next pause. Returns success when async task is actually schedule d, returns error if no task was executed or another scheduleStepIntoAsync was ca lled.",
dgozman 2017/03/03 19:47:06 ... if no tasks were scheduled ...
kozy 2017/03/03 23:14:02 Done.
583 "experimental": true
584 },
585 {
581 "name": "resume", 586 "name": "resume",
582 "description": "Resumes JavaScript execution." 587 "description": "Resumes JavaScript execution."
583 }, 588 },
584 { 589 {
585 "name": "searchInContent", 590 "name": "searchInContent",
586 "parameters": [ 591 "parameters": [
587 { "name": "scriptId", "$ref": "Runtime.ScriptId", "descripti on": "Id of the script to search in." }, 592 { "name": "scriptId", "$ref": "Runtime.ScriptId", "descripti on": "Id of the script to search in." },
588 { "name": "query", "type": "string", "description": "String to search for." }, 593 { "name": "query", "type": "string", "description": "String to search for." },
589 { "name": "caseSensitive", "type": "boolean", "optional": tr ue, "description": "If true, search is case sensitive." }, 594 { "name": "caseSensitive", "type": "boolean", "optional": tr ue, "description": "If true, search is case sensitive." },
590 { "name": "isRegex", "type": "boolean", "optional": true, "d escription": "If true, treats string parameter as regex." } 595 { "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
1066 { 1071 {
1067 "name": "heapStatsUpdate", 1072 "name": "heapStatsUpdate",
1068 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments", 1073 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments",
1069 "parameters": [ 1074 "parameters": [
1070 { "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."} 1075 { "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."}
1071 ] 1076 ]
1072 } 1077 }
1073 ] 1078 ]
1074 }] 1079 }]
1075 } 1080 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698