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

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

Issue 23717011: DevTools: Use scriptId for resolving stack frames in console messages (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed tests Created 7 years, 3 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
« no previous file with comments | « Source/devtools/front_end/ConsoleMessage.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": "0" }, 2 "version": { "major": "1", "minor": "0" },
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 770 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 { "name": "networkRequestId", "$ref": "Network.RequestId", " optional": true, "description": "Identifier of the network request associated wi th this message." }, 781 { "name": "networkRequestId", "$ref": "Network.RequestId", " optional": true, "description": "Identifier of the network request associated wi th this message." },
782 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp, when this message was fired.", "hidden": true } 782 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp, when this message was fired.", "hidden": true }
783 ] 783 ]
784 }, 784 },
785 { 785 {
786 "id": "CallFrame", 786 "id": "CallFrame",
787 "type": "object", 787 "type": "object",
788 "description": "Stack entry for console errors and assertions.", 788 "description": "Stack entry for console errors and assertions.",
789 "properties": [ 789 "properties": [
790 { "name": "functionName", "type": "string", "description": " JavaScript function name." }, 790 { "name": "functionName", "type": "string", "description": " JavaScript function name." },
791 { "name": "scriptId", "type": "string", "description": "Java Script script id." },
791 { "name": "url", "type": "string", "description": "JavaScrip t script name or url." }, 792 { "name": "url", "type": "string", "description": "JavaScrip t script name or url." },
792 { "name": "lineNumber", "type": "integer", "description": "J avaScript script line number." }, 793 { "name": "lineNumber", "type": "integer", "description": "J avaScript script line number." },
793 { "name": "columnNumber", "type": "integer", "description": "JavaScript script column number." } 794 { "name": "columnNumber", "type": "integer", "description": "JavaScript script column number." }
794 ] 795 ]
795 }, 796 },
796 { 797 {
797 "id": "StackTrace", 798 "id": "StackTrace",
798 "type": "array", 799 "type": "array",
799 "items": { "$ref": "CallFrame" }, 800 "items": { "$ref": "CallFrame" },
800 "description": "Call frames for assertions or error messages." 801 "description": "Call frames for assertions or error messages."
(...skipping 3139 matching lines...) Expand 10 before | Expand all | Expand 10 after
3940 "parameters": [ 3941 "parameters": [
3941 { "name": "value", "type": "array", "items": { "type": "obje ct" } } 3942 { "name": "value", "type": "array", "items": { "type": "obje ct" } }
3942 ] 3943 ]
3943 }, 3944 },
3944 { 3945 {
3945 "name": "tracingComplete" 3946 "name": "tracingComplete"
3946 } 3947 }
3947 ] 3948 ]
3948 }] 3949 }]
3949 } 3950 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/ConsoleMessage.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698