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

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

Issue 15764004: DevTools: show extension name in console context switcher (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: correct rebaseline Created 6 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
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 792 matching lines...) Expand 10 before | Expand all | Expand 10 after
803 "type": "integer", 803 "type": "integer",
804 "description": "Id of an execution context." 804 "description": "Id of an execution context."
805 }, 805 },
806 { 806 {
807 "id": "ExecutionContextDescription", 807 "id": "ExecutionContextDescription",
808 "type": "object", 808 "type": "object",
809 "description": "Description of an isolated world.", 809 "description": "Description of an isolated world.",
810 "properties": [ 810 "properties": [
811 { "name": "id", "$ref": "ExecutionContextId", "description": "Unique id of the execution context. It can be used to specify in which executi on context script evaluation should be performed." }, 811 { "name": "id", "$ref": "ExecutionContextId", "description": "Unique id of the execution context. It can be used to specify in which executi on context script evaluation should be performed." },
812 { "name": "isPageContext", "type": "boolean", "description": "True if this is a context where inpspected web page scripts run. False if it i s a content script isolated context.", "hidden": true }, 812 { "name": "isPageContext", "type": "boolean", "description": "True if this is a context where inpspected web page scripts run. False if it i s a content script isolated context.", "hidden": true },
813 { "name": "origin", "type": "string", "description": "Execut ion context origin.", "hidden": true},
813 { "name": "name", "type": "string", "description": "Human re adable name describing given context.", "hidden": true}, 814 { "name": "name", "type": "string", "description": "Human re adable name describing given context.", "hidden": true},
814 { "name": "frameId", "$ref": "Page.FrameId", "description": "Id of the owning frame." } 815 { "name": "frameId", "$ref": "Page.FrameId", "description": "Id of the owning frame." }
815 ] 816 ]
816 } 817 }
817 818
818 ], 819 ],
819 "commands": [ 820 "commands": [
820 { 821 {
821 "name": "evaluate", 822 "name": "evaluate",
822 "parameters": [ 823 "parameters": [
(...skipping 3534 matching lines...) Expand 10 before | Expand all | Expand 10 after
4357 { 4358 {
4358 "name": "dataAvailable", 4359 "name": "dataAvailable",
4359 "parameters": [ 4360 "parameters": [
4360 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4361 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4361 ], 4362 ],
4362 "handlers": ["browser", "frontend"] 4363 "handlers": ["browser", "frontend"]
4363 } 4364 }
4364 ] 4365 ]
4365 }] 4366 }]
4366 } 4367 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698