Index: third_party/WebKit/Source/core/inspector/protocol/Inspector.json |
diff --git a/third_party/WebKit/Source/core/inspector/protocol/Inspector.json b/third_party/WebKit/Source/core/inspector/protocol/Inspector.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ab35ac19e02bf0391c159758d50e992b9dd22e0a |
--- /dev/null |
+++ b/third_party/WebKit/Source/core/inspector/protocol/Inspector.json |
@@ -0,0 +1,48 @@ |
+{ |
+ "domain": "Inspector", |
+ "version": { |
+ "major": "1", |
+ "minor": "1" |
+ }, |
+ "hidden": true, |
+ "types": [], |
+ "commands": [ |
+ { |
+ "name": "enable", |
+ "description": "Enables inspector domain notifications.", |
+ "handlers": [ |
+ "browser" |
+ ] |
+ }, |
+ { |
+ "name": "disable", |
+ "description": "Disables inspector domain notifications.", |
+ "handlers": [ |
+ "browser" |
+ ] |
+ } |
+ ], |
+ "events": [ |
+ { |
+ "name": "detached", |
+ "description": "Fired when remote debugging connection is about to be terminated. Contains detach reason.", |
+ "parameters": [ |
+ { |
+ "name": "reason", |
+ "type": "string", |
+ "description": "The reason why connection has been terminated." |
+ } |
+ ], |
+ "handlers": [ |
+ "browser" |
+ ] |
+ }, |
+ { |
+ "name": "targetCrashed", |
+ "description": "Fired when debugging target has crashed", |
+ "handlers": [ |
+ "browser" |
+ ] |
+ } |
+ ] |
+} |