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

Side by Side Diff: third_party/WebKit/Source/core/inspector/browser_protocol.json

Issue 2159633002: [DevTools] Generate public versions of protocol classes to be exposed in v8_inspector/public. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed extra files Created 4 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
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 3096 matching lines...) Expand 10 before | Expand all | Expand 10 after
3107 "description": "DOM breakpoint type." 3107 "description": "DOM breakpoint type."
3108 }, 3108 },
3109 { 3109 {
3110 "id": "EventListener", 3110 "id": "EventListener",
3111 "type": "object", 3111 "type": "object",
3112 "description": "Object event listener.", 3112 "description": "Object event listener.",
3113 "properties": [ 3113 "properties": [
3114 { "name": "type", "type": "string", "description": "<code>Ev entListener</code>'s type." }, 3114 { "name": "type", "type": "string", "description": "<code>Ev entListener</code>'s type." },
3115 { "name": "useCapture", "type": "boolean", "description": "< code>EventListener</code>'s useCapture." }, 3115 { "name": "useCapture", "type": "boolean", "description": "< code>EventListener</code>'s useCapture." },
3116 { "name": "passive", "type": "boolean", "description": "<cod e>EventListener</code>'s passive flag." }, 3116 { "name": "passive", "type": "boolean", "description": "<cod e>EventListener</code>'s passive flag." },
3117 { "name": "location", "$ref": "Debugger.Location", "descript ion": "Handler code location." }, 3117 { "name": "scriptId", "$ref": "Runtime.ScriptId", "descripti on": "Script id of the handler code." },
3118 { "name": "lineNumber", "type": "integer", "description": "L ine number in the script (0-based)." },
3119 { "name": "columnNumber", "type": "integer", "description": "Column number in the script (0-based)." },
3118 { "name": "handler", "$ref": "Runtime.RemoteObject", "option al": true, "description": "Event handler function value." }, 3120 { "name": "handler", "$ref": "Runtime.RemoteObject", "option al": true, "description": "Event handler function value." },
3119 { "name": "originalHandler", "$ref": "Runtime.RemoteObject", "optional": true, "description": "Event original handler function value." }, 3121 { "name": "originalHandler", "$ref": "Runtime.RemoteObject", "optional": true, "description": "Event original handler function value." },
3120 { "name": "removeFunction", "$ref": "Runtime.RemoteObject", "optional": true, "description": "Event listener remove function." } 3122 { "name": "removeFunction", "$ref": "Runtime.RemoteObject", "optional": true, "description": "Event listener remove function." }
3121 ], 3123 ],
3122 "hidden": true 3124 "hidden": true
3123 } 3125 }
3124 ], 3126 ],
3125 "commands": [ 3127 "commands": [
3126 { 3128 {
3127 "name": "setDOMBreakpoint", 3129 "name": "setDOMBreakpoint",
(...skipping 1326 matching lines...) Expand 10 before | Expand all | Expand 10 after
4454 "description": "Informs that port was successfully bound and got a specified connection id.", 4456 "description": "Informs that port was successfully bound and got a specified connection id.",
4455 "parameters": [ 4457 "parameters": [
4456 {"name": "port", "type": "integer", "description": "Port num ber that was successfully bound." }, 4458 {"name": "port", "type": "integer", "description": "Port num ber that was successfully bound." },
4457 {"name": "connectionId", "type": "string", "description": "C onnection id to be used." } 4459 {"name": "connectionId", "type": "string", "description": "C onnection id to be used." }
4458 ], 4460 ],
4459 "handlers": ["browser"] 4461 "handlers": ["browser"]
4460 } 4462 }
4461 ] 4463 ]
4462 }] 4464 }]
4463 } 4465 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/inspector/InspectorSession.cpp ('k') | third_party/WebKit/Source/core/inspector/inspector.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698