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

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

Issue 185713007: DevTools: Add timestamp support in the console (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed apavlov's comments 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 | Annotate | Revision Log
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 903 matching lines...) Expand 10 before | Expand all | Expand 10 after
914 ], 914 ],
915 "events": [ 915 "events": [
916 { 916 {
917 "name": "messageAdded", 917 "name": "messageAdded",
918 "parameters": [ 918 "parameters": [
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",
925 "parameters": [
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 }
928 ],
929 "description": "Issued when subsequent message(s) are equal to t he previous one(s)."
930 },
931 {
932 "name": "messagesCleared", 924 "name": "messagesCleared",
933 "description": "Issued when console is cleared. This happens eit her upon <code>clearMessages</code> command or after page navigation." 925 "description": "Issued when console is cleared. This happens eit her upon <code>clearMessages</code> command or after page navigation."
934 } 926 }
935 ] 927 ]
936 }, 928 },
937 { 929 {
938 "domain": "Network", 930 "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.", 931 "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 "types": [ 932 "types": [
941 { 933 {
(...skipping 3122 matching lines...) Expand 10 before | Expand all | Expand 10 after
4064 { 4056 {
4065 "name": "dataAvailable", 4057 "name": "dataAvailable",
4066 "parameters": [ 4058 "parameters": [
4067 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4059 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4068 ], 4060 ],
4069 "handlers": ["browser", "frontend"] 4061 "handlers": ["browser", "frontend"]
4070 } 4062 }
4071 ] 4063 ]
4072 }] 4064 }]
4073 } 4065 }
OLDNEW
« Source/devtools/front_end/ConsoleViewMessage.js ('K') | « Source/devtools/front_end/utilities.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698