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

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: rebaseline. Created 6 years, 4 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 783 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 "type": "integer", 794 "type": "integer",
795 "description": "Id of an execution context." 795 "description": "Id of an execution context."
796 }, 796 },
797 { 797 {
798 "id": "ExecutionContextDescription", 798 "id": "ExecutionContextDescription",
799 "type": "object", 799 "type": "object",
800 "description": "Description of an isolated world.", 800 "description": "Description of an isolated world.",
801 "properties": [ 801 "properties": [
802 { "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." }, 802 { "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." },
803 { "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 }, 803 { "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 },
804 { "name": "origin", "type": "string", "description": "Execut ion context origin.", "hidden": true},
804 { "name": "name", "type": "string", "description": "Human re adable name describing given context.", "hidden": true}, 805 { "name": "name", "type": "string", "description": "Human re adable name describing given context.", "hidden": true},
805 { "name": "frameId", "$ref": "Page.FrameId", "description": "Id of the owning frame." } 806 { "name": "frameId", "$ref": "Page.FrameId", "description": "Id of the owning frame." }
806 ] 807 ]
807 } 808 }
808 809
809 ], 810 ],
810 "commands": [ 811 "commands": [
811 { 812 {
812 "name": "evaluate", 813 "name": "evaluate",
813 "parameters": [ 814 "parameters": [
(...skipping 3514 matching lines...) Expand 10 before | Expand all | Expand 10 after
4328 { 4329 {
4329 "name": "dataAvailable", 4330 "name": "dataAvailable",
4330 "parameters": [ 4331 "parameters": [
4331 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4332 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4332 ], 4333 ],
4333 "handlers": ["browser", "frontend"] 4334 "handlers": ["browser", "frontend"]
4334 } 4335 }
4335 ] 4336 ]
4336 }] 4337 }]
4337 } 4338 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698