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

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

Issue 2146163002: [DevTools] Remove Console.messagesCleared event. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2139543002
Patch Set: rebased on ToT 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/V8InspectorSessionImpl.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 751 matching lines...) Expand 10 before | Expand all | Expand 10 after
762 "name": "messageRepeatCountUpdated", 762 "name": "messageRepeatCountUpdated",
763 "parameters": [ 763 "parameters": [
764 { "name": "count", "type": "integer", "description": "New re peat count value." }, 764 { "name": "count", "type": "integer", "description": "New re peat count value." },
765 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp of most recent message in batch.", "hidden": true } 765 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp of most recent message in batch.", "hidden": true }
766 ], 766 ],
767 "description": "Is not issued. Will be gone in the future versio ns of the protocol.", 767 "description": "Is not issued. Will be gone in the future versio ns of the protocol.",
768 "deprecated": true 768 "deprecated": true
769 }, 769 },
770 { 770 {
771 "name": "messagesCleared", 771 "name": "messagesCleared",
772 "description": "Issued when console is cleared. This happens eit her upon <code>clearMessages</code> command or after page navigation." 772 "description": "Not issued.",
773 "deprecated": true
773 } 774 }
774 ] 775 ]
775 }, 776 },
776 { 777 {
777 "domain": "Profiler", 778 "domain": "Profiler",
778 "dependencies": ["Runtime", "Debugger"], 779 "dependencies": ["Runtime", "Debugger"],
779 "hidden": true, 780 "hidden": true,
780 "types": [ 781 "types": [
781 { 782 {
782 "id": "CPUProfileNode", 783 "id": "CPUProfileNode",
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
992 { 993 {
993 "name": "heapStatsUpdate", 994 "name": "heapStatsUpdate",
994 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments", 995 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments",
995 "parameters": [ 996 "parameters": [
996 { "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."} 997 { "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."}
997 ] 998 ]
998 } 999 }
999 ] 1000 ]
1000 }] 1001 }]
1001 } 1002 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698