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 b01d7a4c75fab34ca749eb43e3ef44901ce44167..581b5cc13cc8858c7ba39bc10dc4a334269e8697 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", |
+ "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." } |
+ ], |
+ "hidden": true |
+ }, |
+ { |
"name": "inspectRequested", |
"parameters": [ |
{ "name": "object", "$ref": "RemoteObject" }, |