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

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

Issue 2239473003: [DevTools] Removed interstatementLocation from Debugger.continueToLocation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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/V8DebuggerAgentImpl.cpp ('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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 { 523 {
524 "name": "removeBreakpoint", 524 "name": "removeBreakpoint",
525 "parameters": [ 525 "parameters": [
526 { "name": "breakpointId", "$ref": "BreakpointId" } 526 { "name": "breakpointId", "$ref": "BreakpointId" }
527 ], 527 ],
528 "description": "Removes JavaScript breakpoint." 528 "description": "Removes JavaScript breakpoint."
529 }, 529 },
530 { 530 {
531 "name": "continueToLocation", 531 "name": "continueToLocation",
532 "parameters": [ 532 "parameters": [
533 { "name": "location", "$ref": "Location", "description": "Lo cation to continue to." }, 533 { "name": "location", "$ref": "Location", "description": "Lo cation to continue to." }
534 { "name": "interstatementLocation", "type": "boolean", "opti onal": true, "experimental": true, "description": "Allows breakpoints at the int emediate positions inside statements." }
dgozman 2016/08/10 23:20:37 Doesn't check-protocol-version complain?
kozy 2016/08/10 23:22:08 No, I think because it's hidden/experimental flag.
535 ], 534 ],
536 "description": "Continues execution until specific location is r eached." 535 "description": "Continues execution until specific location is r eached."
537 }, 536 },
538 { 537 {
539 "name": "stepOver", 538 "name": "stepOver",
540 "description": "Steps over the statement." 539 "description": "Steps over the statement."
541 }, 540 },
542 { 541 {
543 "name": "stepInto", 542 "name": "stepInto",
544 "description": "Steps into the function call." 543 "description": "Steps into the function call."
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
1016 { 1015 {
1017 "name": "heapStatsUpdate", 1016 "name": "heapStatsUpdate",
1018 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments", 1017 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments",
1019 "parameters": [ 1018 "parameters": [
1020 { "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."} 1019 { "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."}
1021 ] 1020 ]
1022 } 1021 }
1023 ] 1022 ]
1024 }] 1023 }]
1025 } 1024 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698