]>
Commit | Line | Data |
---|---|---|
81345200 A |
1 | { |
2 | "domain": "Inspector", | |
3 | "types": [], | |
4 | "commands": [ | |
5 | { | |
6 | "name": "enable", | |
7 | "description": "Enables inspector domain notifications." | |
8 | }, | |
9 | { | |
10 | "name": "disable", | |
11 | "description": "Disables inspector domain notifications." | |
ed1e77d3 A |
12 | }, |
13 | { | |
14 | "name": "initialized", | |
15 | "description": "Sent by the frontend after all initialization messages have been sent." | |
81345200 A |
16 | } |
17 | ], | |
18 | "events": [ | |
19 | { | |
20 | "name": "evaluateForTestInFrontend", | |
21 | "parameters": [ | |
22 | { "name": "script", "type": "string" } | |
23 | ] | |
24 | }, | |
25 | { | |
26 | "name": "inspect", | |
27 | "parameters": [ | |
28 | { "name": "object", "$ref": "Runtime.RemoteObject" }, | |
29 | { "name": "hints", "type": "object" } | |
30 | ] | |
31 | }, | |
32 | { | |
33 | "name": "detached", | |
34 | "description": "Fired when remote debugging connection is about to be terminated. Contains detach reason.", | |
35 | "parameters": [ | |
36 | { "name": "reason", "type": "string", "description": "The reason why connection has been terminated." } | |
37 | ] | |
38 | }, | |
ed1e77d3 A |
39 | { |
40 | "name": "activateExtraDomains", | |
41 | "description": "Fired when the backend has alternate domains that need to be activated.", | |
42 | "parameters": [ | |
43 | { "name": "domains", "type": "array", "items": { "type": "string" }, "description": "Domain names that need activation" } | |
44 | ] | |
45 | }, | |
81345200 A |
46 | { |
47 | "name": "targetCrashed", | |
48 | "description": "Fired when debugging target has crashed" | |
49 | } | |
50 | ] | |
51 | } |