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

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

Issue 2125423002: [DevTools] Rename ScriptPosition.line|column into lineNumber|columnNumber (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 { "name": "lineNumber", "type": "integer", "description": "L ine number in the script (0-based)." }, 340 { "name": "lineNumber", "type": "integer", "description": "L ine number in the script (0-based)." },
341 { "name": "columnNumber", "type": "integer", "optional": tru e, "description": "Column number in the script (0-based)." } 341 { "name": "columnNumber", "type": "integer", "optional": tru e, "description": "Column number in the script (0-based)." }
342 ], 342 ],
343 "description": "Location in the source code." 343 "description": "Location in the source code."
344 }, 344 },
345 { 345 {
346 "id": "ScriptPosition", 346 "id": "ScriptPosition",
347 "hidden": true, 347 "hidden": true,
348 "type": "object", 348 "type": "object",
349 "properties": [ 349 "properties": [
350 { "name": "line", "type": "integer" }, 350 { "name": "lineNumber", "type": "integer" },
351 { "name": "column", "type": "integer" } 351 { "name": "columnNumber", "type": "integer" }
352 ], 352 ],
353 "description": "Location in the source code." 353 "description": "Location in the source code."
354 }, 354 },
355 { 355 {
356 "id": "FunctionDetails", 356 "id": "FunctionDetails",
357 "hidden": true, 357 "hidden": true,
358 "type": "object", 358 "type": "object",
359 "properties": [ 359 "properties": [
360 { "name": "location", "$ref": "Location", "optional": true, "description": "Location of the function, none for native functions." }, 360 { "name": "location", "$ref": "Location", "optional": true, "description": "Location of the function, none for native functions." },
361 { "name": "functionName", "type": "string", "description": " Name of the function." }, 361 { "name": "functionName", "type": "string", "description": " Name of the function." },
(...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after
1016 { 1016 {
1017 "name": "heapStatsUpdate", 1017 "name": "heapStatsUpdate",
1018 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments", 1018 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments",
1019 "parameters": [ 1019 "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."} 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."}
1021 ] 1021 ]
1022 } 1022 }
1023 ] 1023 ]
1024 }] 1024 }]
1025 } 1025 }
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