Index: third_party/WebKit/Source/platform/v8_inspector/js_protocol.json |
diff --git a/third_party/WebKit/Source/platform/v8_inspector/js_protocol.json b/third_party/WebKit/Source/platform/v8_inspector/js_protocol.json |
index 6bcd66431f7697a77d15a7b9cf1cefb26352d535..3fa72a9b5c1f4059d78ec81375dbff4c932f0fd2 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/js_protocol.json |
+++ b/third_party/WebKit/Source/platform/v8_inspector/js_protocol.json |
@@ -331,6 +331,18 @@ |
"hidden": true |
}, |
{ |
+ "name": "consoleAPICall", |
pfeldman
2016/07/13 00:43:50
consoleAPICalled
dgozman
2016/07/13 21:08:07
Done.
|
+ "description": "Issued when console API was called.", |
+ "parameters": [ |
+ { "name": "timestamp", "type": "number", "description": "Number of milliseconds since epoch. TODO(dgozman): unify with Console.Timestamp" }, |
+ { "name": "type", "type": "string", "enum": ["log", "debug", "info", "error", "warning", "dir", "dirxml", "table", "trace", "clear", "startGroup", "startGroupCollapsed", "endGroup", "assert", "profile", "profileEnd"], "description": "Type of the call." }, |
+ { "name": "callArguments", "type": "array", "items": { "$ref": "RemoteObject" }, "description": "Call arguments." }, |
+ { "name": "executionContextId", "$ref": "ExecutionContextId", "description": "Identifier of the context where the call was made." }, |
+ { "name": "stack", "$ref": "StackTrace", "optional": true, "description": "Stack trace captured when the call was made." } |
pfeldman
2016/07/13 00:48:43
stackTrace
dgozman
2016/07/13 21:08:07
Done.
|
+ ], |
+ "hidden": true |
+ }, |
+ { |
"name": "inspectRequested", |
"parameters": [ |
{ "name": "object", "$ref": "RemoteObject" }, |