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

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

Issue 221923003: DevTools: Add executionContextId in ConsoleMessage in backend (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix compilation on linux bots Created 6 years, 8 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 | « Source/devtools/front_end/ConsoleModel.js ('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": "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 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 { "name": "level", "type": "string", "enum": ["log", "warnin g", "error", "debug", "info"], "description": "Message severity." }, 840 { "name": "level", "type": "string", "enum": ["log", "warnin g", "error", "debug", "info"], "description": "Message severity." },
841 { "name": "text", "type": "string", "description": "Message text." }, 841 { "name": "text", "type": "string", "description": "Message text." },
842 { "name": "type", "type": "string", "optional": true, "enum" : ["log", "dir", "dirxml", "table", "trace", "clear", "startGroup", "startGroupC ollapsed", "endGroup", "assert", "profile", "profileEnd"], "description": "Conso le message type." }, 842 { "name": "type", "type": "string", "optional": true, "enum" : ["log", "dir", "dirxml", "table", "trace", "clear", "startGroup", "startGroupC ollapsed", "endGroup", "assert", "profile", "profileEnd"], "description": "Conso le message type." },
843 { "name": "url", "type": "string", "optional": true, "descri ption": "URL of the message origin." }, 843 { "name": "url", "type": "string", "optional": true, "descri ption": "URL of the message origin." },
844 { "name": "line", "type": "integer", "optional": true, "desc ription": "Line number in the resource that generated this message." }, 844 { "name": "line", "type": "integer", "optional": true, "desc ription": "Line number in the resource that generated this message." },
845 { "name": "column", "type": "integer", "optional": true, "de scription": "Column number in the resource that generated this message." }, 845 { "name": "column", "type": "integer", "optional": true, "de scription": "Column number in the resource that generated this message." },
846 { "name": "repeatCount", "type": "integer", "optional": true , "description": "Repeat count for repeated messages." }, 846 { "name": "repeatCount", "type": "integer", "optional": true , "description": "Repeat count for repeated messages." },
847 { "name": "parameters", "type": "array", "items": { "$ref": "Runtime.RemoteObject" }, "optional": true, "description": "Message parameters i n case of the formatted message." }, 847 { "name": "parameters", "type": "array", "items": { "$ref": "Runtime.RemoteObject" }, "optional": true, "description": "Message parameters i n case of the formatted message." },
848 { "name": "stackTrace", "$ref": "StackTrace", "optional": tr ue, "description": "JavaScript stack trace for assertions and error messages." } , 848 { "name": "stackTrace", "$ref": "StackTrace", "optional": tr ue, "description": "JavaScript stack trace for assertions and error messages." } ,
849 { "name": "networkRequestId", "$ref": "Network.RequestId", " optional": true, "description": "Identifier of the network request associated wi th this message." }, 849 { "name": "networkRequestId", "$ref": "Network.RequestId", " optional": true, "description": "Identifier of the network request associated wi th this message." },
850 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp, when this message was fired.", "hidden": true } 850 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp, when this message was fired.", "hidden": true },
851 {"name": "executionContextId", "$ref": "Runtime.ExecutionCon textId", "optional": true, "description": "identifier of the context where mess age was created", "hidden": true }
851 ] 852 ]
852 }, 853 },
853 { 854 {
854 "id": "CallFrame", 855 "id": "CallFrame",
855 "type": "object", 856 "type": "object",
856 "description": "Stack entry for console errors and assertions.", 857 "description": "Stack entry for console errors and assertions.",
857 "properties": [ 858 "properties": [
858 { "name": "functionName", "type": "string", "description": " JavaScript function name." }, 859 { "name": "functionName", "type": "string", "description": " JavaScript function name." },
859 { "name": "scriptId", "type": "string", "description": "Java Script script id." }, 860 { "name": "scriptId", "type": "string", "description": "Java Script script id." },
860 { "name": "url", "type": "string", "description": "JavaScrip t script name or url." }, 861 { "name": "url", "type": "string", "description": "JavaScrip t script name or url." },
(...skipping 3216 matching lines...) Expand 10 before | Expand all | Expand 10 after
4077 { 4078 {
4078 "name": "dataAvailable", 4079 "name": "dataAvailable",
4079 "parameters": [ 4080 "parameters": [
4080 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4081 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4081 ], 4082 ],
4082 "handlers": ["browser", "frontend"] 4083 "handlers": ["browser", "frontend"]
4083 } 4084 }
4084 ] 4085 ]
4085 }] 4086 }]
4086 } 4087 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/ConsoleModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698