Index: third_party/WebKit/Source/devtools/protocol.json |
diff --git a/third_party/WebKit/Source/devtools/protocol.json b/third_party/WebKit/Source/devtools/protocol.json |
index f20428c77099ab4a11fdd89f4dbc31280d53f910..7dd8e6673a79ebd9bc3737fc987608a5d4872bb4 100644 |
--- a/third_party/WebKit/Source/devtools/protocol.json |
+++ b/third_party/WebKit/Source/devtools/protocol.json |
@@ -1014,7 +1014,8 @@ |
{ "name": "scriptId", "$ref": "ScriptId", "description": "Id of the script to run." }, |
{ "name": "executionContextId", "$ref": "ExecutionContextId", "description": "Specifies in which isolated context to perform script run. Each content script lives in an isolated context and this parameter is used to specify one of those contexts." }, |
{ "name": "objectGroup", "type": "string", "optional": true, "description": "Symbolic group name that can be used to release multiple objects." }, |
- { "name": "doNotPauseOnExceptionsAndMuteConsole", "type": "boolean", "optional": true, "description": "Specifies whether script run should stop on exceptions and mute console. Overrides setPauseOnException state." } |
+ { "name": "doNotPauseOnExceptionsAndMuteConsole", "type": "boolean", "optional": true, "description": "Specifies whether script run should stop on exceptions and mute console. Overrides setPauseOnException state." }, |
+ { "name": "includeCommandLineAPI", "type": "boolean", "optional": true, "description": "Determines whether Command Line API should be available during the evaluation.", "hidden": true } |
dgozman
2016/02/17 23:47:43
Remove hidden - the whole method is hidden.
kozy
2016/02/18 00:27:33
Done.
|
], |
"returns": [ |
{ "name": "result", "$ref": "RemoteObject", "description": "Run result." }, |