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

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

Issue 2766573003: [debug] introduce precise binary code coverage. (Closed)
Patch Set: fix test 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/debug/debug-interface.h ('k') | src/inspector/v8-profiler-agent-impl.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 884 matching lines...) Expand 10 before | Expand all | Expand 10 after
895 "name": "start" 895 "name": "start"
896 }, 896 },
897 { 897 {
898 "name": "stop", 898 "name": "stop",
899 "returns": [ 899 "returns": [
900 { "name": "profile", "$ref": "Profile", "description": "Reco rded profile." } 900 { "name": "profile", "$ref": "Profile", "description": "Reco rded profile." }
901 ] 901 ]
902 }, 902 },
903 { 903 {
904 "name": "startPreciseCoverage", 904 "name": "startPreciseCoverage",
905 "parameters": [
906 { "name": "callCount", "type": "boolean", "optional": true, "description": "Collect accurate call counts beyond simple 'covered' or 'not cov ered'." }
907 ],
905 "description": "Enable precise code coverage. Coverage data for JavaScript executed before enabling precise code coverage may be incomplete. Ena bling prevents running optimized code and resets execution counters.", 908 "description": "Enable precise code coverage. Coverage data for JavaScript executed before enabling precise code coverage may be incomplete. Ena bling prevents running optimized code and resets execution counters.",
906 "experimental": true 909 "experimental": true
907 }, 910 },
908 { 911 {
909 "name": "stopPreciseCoverage", 912 "name": "stopPreciseCoverage",
910 "description": "Disable precise code coverage. Disabling release s unnecessary execution count records and allows executing optimized code.", 913 "description": "Disable precise code coverage. Disabling release s unnecessary execution count records and allows executing optimized code.",
911 "experimental": true 914 "experimental": true
912 }, 915 },
913 { 916 {
914 "name": "takePreciseCoverage", 917 "name": "takePreciseCoverage",
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
1073 { 1076 {
1074 "name": "heapStatsUpdate", 1077 "name": "heapStatsUpdate",
1075 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments", 1078 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments",
1076 "parameters": [ 1079 "parameters": [
1077 { "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."} 1080 { "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."}
1078 ] 1081 ]
1079 } 1082 }
1080 ] 1083 ]
1081 }] 1084 }]
1082 } 1085 }
OLDNEW
« no previous file with comments | « src/debug/debug-interface.h ('k') | src/inspector/v8-profiler-agent-impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698