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

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

Issue 2723273002: [inspector] introduced Debugger.scheduleStepIntoAsync (Closed)
Patch Set: fixed tests 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
« no previous file with comments | « src/inspector/inspector_protocol_config.json ('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 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
560 }, 560 },
561 { 561 {
562 "name": "stepOut", 562 "name": "stepOut",
563 "description": "Steps out of the function call." 563 "description": "Steps out of the function call."
564 }, 564 },
565 { 565 {
566 "name": "pause", 566 "name": "pause",
567 "description": "Stops on the next JavaScript statement." 567 "description": "Stops on the next JavaScript statement."
568 }, 568 },
569 { 569 {
570 "name": "scheduleStepIntoAsync",
571 "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 were scheduled or another scheduleStepIntoAsync was called.",
572 "experimental": true
573 },
574 {
570 "name": "resume", 575 "name": "resume",
571 "description": "Resumes JavaScript execution." 576 "description": "Resumes JavaScript execution."
572 }, 577 },
573 { 578 {
574 "name": "searchInContent", 579 "name": "searchInContent",
575 "parameters": [ 580 "parameters": [
576 { "name": "scriptId", "$ref": "Runtime.ScriptId", "descripti on": "Id of the script to search in." }, 581 { "name": "scriptId", "$ref": "Runtime.ScriptId", "descripti on": "Id of the script to search in." },
577 { "name": "query", "type": "string", "description": "String to search for." }, 582 { "name": "query", "type": "string", "description": "String to search for." },
578 { "name": "caseSensitive", "type": "boolean", "optional": tr ue, "description": "If true, search is case sensitive." }, 583 { "name": "caseSensitive", "type": "boolean", "optional": tr ue, "description": "If true, search is case sensitive." },
579 { "name": "isRegex", "type": "boolean", "optional": true, "d escription": "If true, treats string parameter as regex." } 584 { "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
1055 { 1060 {
1056 "name": "heapStatsUpdate", 1061 "name": "heapStatsUpdate",
1057 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments", 1062 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments",
1058 "parameters": [ 1063 "parameters": [
1059 { "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."} 1064 { "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."}
1060 ] 1065 ]
1061 } 1066 }
1062 ] 1067 ]
1063 }] 1068 }]
1064 } 1069 }
OLDNEW
« no previous file with comments | « src/inspector/inspector_protocol_config.json ('k') | src/inspector/v8-debugger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698