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

Side by Side Diff: Source/devtools/protocol.json

Issue 211023002: DevTools: Remove event Console.messageRepeatCountUpdated (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
OLDNEW
1 { 1 {
2 "version": { "major": "1", "minor": "1" }, 2 "version": { "major": "1", "minor": "1" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "hidden": true, 5 "hidden": true,
6 "types": [], 6 "types": [],
7 "commands": [ 7 "commands": [
8 { 8 {
9 "name": "enable", 9 "name": "enable",
10 "description": "Enables inspector domain notifications." 10 "description": "Enables inspector domain notifications."
(...skipping 908 matching lines...) Expand 10 before | Expand all | Expand 10 after
919 { "name": "message", "$ref": "ConsoleMessage", "description" : "Console message that has been added." } 919 { "name": "message", "$ref": "ConsoleMessage", "description" : "Console message that has been added." }
920 ], 920 ],
921 "description": "Issued when new console message is added." 921 "description": "Issued when new console message is added."
922 }, 922 },
923 { 923 {
924 "name": "messageRepeatCountUpdated", 924 "name": "messageRepeatCountUpdated",
925 "parameters": [ 925 "parameters": [
926 { "name": "count", "type": "integer", "description": "New re peat count value." }, 926 { "name": "count", "type": "integer", "description": "New re peat count value." },
927 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp of most recent message in batch.", "hidden": true } 927 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp of most recent message in batch.", "hidden": true }
928 ], 928 ],
929 "description": "Issued when subsequent message(s) are equal to t he previous one(s)." 929 "description": "Never happens, will be removed soon.",
pfeldman 2014/03/25 13:09:32 Is not issued. Will be gone in the future versions
sergeyv 2014/03/25 13:42:56 Done.
930 "deprecated": true
930 }, 931 },
931 { 932 {
932 "name": "messagesCleared", 933 "name": "messagesCleared",
933 "description": "Issued when console is cleared. This happens eit her upon <code>clearMessages</code> command or after page navigation." 934 "description": "Issued when console is cleared. This happens eit her upon <code>clearMessages</code> command or after page navigation."
934 } 935 }
935 ] 936 ]
936 }, 937 },
937 { 938 {
938 "domain": "Network", 939 "domain": "Network",
939 "description": "Network domain allows tracking network activities of the page. It exposes information about http, file, data and other requests and resp onses, their headers, bodies, timing, etc.", 940 "description": "Network domain allows tracking network activities of the page. It exposes information about http, file, data and other requests and resp onses, their headers, bodies, timing, etc.",
(...skipping 3134 matching lines...) Expand 10 before | Expand all | Expand 10 after
4074 { 4075 {
4075 "name": "dataAvailable", 4076 "name": "dataAvailable",
4076 "parameters": [ 4077 "parameters": [
4077 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4078 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4078 ], 4079 ],
4079 "handlers": ["browser", "frontend"] 4080 "handlers": ["browser", "frontend"]
4080 } 4081 }
4081 ] 4082 ]
4082 }] 4083 }]
4083 } 4084 }
OLDNEW
« Source/devtools/front_end/SourceFrame.js ('K') | « Source/devtools/front_end/Tests.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698