Index: Source/devtools/protocol.json |
diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json |
index ce3f8bc0118fef8c55a11c7cfeda511391b7aa89..a4785770747e80c83aff49c1e83349467fc4d8c4 100644 |
--- a/Source/devtools/protocol.json |
+++ b/Source/devtools/protocol.json |
@@ -712,6 +712,7 @@ |
{ "name": "doNotPauseOnExceptionsAndMuteConsole", "type": "boolean", "optional": true, "description": "Specifies whether evaluation should stop on exceptions and mute console. Overrides setPauseOnException state.", "hidden": true }, |
{ "name": "contextId", "$ref": "Runtime.ExecutionContextId", "optional": true, "description": "Specifies in which isolated context to perform evaluation. Each content script lives in an isolated context and this parameter may be used to specify one of those contexts. If the parameter is omitted or 0 the evaluation will be performed in the context of the inspected page." }, |
{ "name": "returnByValue", "type": "boolean", "optional": true, "description": "Whether the result is expected to be a JSON object that should be sent by value." }, |
+ { "name": "forceObjectId", "type": "boolean", "optional": true, "hidden": true, "description": "If true, will generate a <code>RemoteObject.objectId</code> even for primitive values. The call site is responsibile for releasing this object." }, |
{ "name": "generatePreview", "type": "boolean", "optional": true, "hidden": true, "description": "Whether preview should be generated for the result." } |
], |
"returns": [ |
@@ -728,6 +729,7 @@ |
{ "name": "arguments", "type": "array", "items": { "$ref": "CallArgument", "description": "Call argument." }, "optional": true, "description": "Call arguments. All call arguments must belong to the same JavaScript world as the target object." }, |
{ "name": "doNotPauseOnExceptionsAndMuteConsole", "type": "boolean", "optional": true, "description": "Specifies whether function call should stop on exceptions and mute console. Overrides setPauseOnException state.", "hidden": true }, |
{ "name": "returnByValue", "type": "boolean", "optional": true, "description": "Whether the result is expected to be a JSON object which should be sent by value." }, |
+ { "name": "forceObjectId", "type": "boolean", "optional": true, "hidden": true, "description": "If true, will generate a <code>RemoteObject.objectId</code> even for primitive values. The call site is responsibile for releasing this object." }, |
{ "name": "generatePreview", "type": "boolean", "optional": true, "hidden": true, "description": "Whether preview should be generated for the result." } |
], |
"returns": [ |
@@ -3173,6 +3175,7 @@ |
{ "name": "includeCommandLineAPI", "type": "boolean", "optional": true, "description": "Specifies whether command line API should be available to the evaluated expression, defaults to false.", "hidden": true }, |
{ "name": "doNotPauseOnExceptionsAndMuteConsole", "type": "boolean", "optional": true, "description": "Specifies whether evaluation should stop on exceptions and mute console. Overrides setPauseOnException state.", "hidden": true }, |
{ "name": "returnByValue", "type": "boolean", "optional": true, "description": "Whether the result is expected to be a JSON object that should be sent by value." }, |
+ { "name": "forceObjectId", "type": "boolean", "optional": true, "hidden": true, "description": "If true, will generate a <code>RemoteObject.objectId</code> even for primitive values. The call site is responsibile for releasing this object." }, |
pfeldman
2013/11/23 15:58:13
I don't think it is a good idea since it makes pro
|
{ "name": "generatePreview", "type": "boolean", "optional": true, "hidden": true, "description": "Whether preview should be generated for the result." } |
], |
"returns": [ |