Title: [248142] trunk/Source/WebInspectorUI
Revision
248142
Author
[email protected]
Date
2019-08-01 17:03:46 -0700 (Thu, 01 Aug 2019)

Log Message

Unreviewed, remove `emulateUserGesture` parameter from `Debugger.evaluateOnCallFrame` for iOS 13

Rubber-stamped by Joseph Pecoraro.

* UserInterface/Protocol/Legacy/13.0/InspectorBackendCommands.js:
* Versions/Inspector-iOS-13.0.json:
The iOS 13 protocol has already been decided, so these shouldn't have been added unless they
were cherry-picked in.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (248141 => 248142)


--- trunk/Source/WebInspectorUI/ChangeLog	2019-08-01 23:13:37 UTC (rev 248141)
+++ trunk/Source/WebInspectorUI/ChangeLog	2019-08-02 00:03:46 UTC (rev 248142)
@@ -1,3 +1,14 @@
+2019-08-01  Devin Rousso  <[email protected]>
+
+        Unreviewed, remove `emulateUserGesture` parameter from `Debugger.evaluateOnCallFrame` for iOS 13
+
+        Rubber-stamped by Joseph Pecoraro.
+
+        * UserInterface/Protocol/Legacy/13.0/InspectorBackendCommands.js:
+        * Versions/Inspector-iOS-13.0.json:
+        The iOS 13 protocol has already been decided, so these shouldn't have been added unless they
+        were cherry-picked in.
+
 2019-07-31  Devin Rousso  <[email protected]>
 
         Web Inspector: Debugger: support emulateUserGesture parameter in Debugger.evaluateOnCallFrame

Modified: trunk/Source/WebInspectorUI/UserInterface/Protocol/Legacy/13.0/InspectorBackendCommands.js (248141 => 248142)


--- trunk/Source/WebInspectorUI/UserInterface/Protocol/Legacy/13.0/InspectorBackendCommands.js	2019-08-01 23:13:37 UTC (rev 248141)
+++ trunk/Source/WebInspectorUI/UserInterface/Protocol/Legacy/13.0/InspectorBackendCommands.js	2019-08-02 00:03:46 UTC (rev 248142)
@@ -268,7 +268,7 @@
 InspectorBackend.registerCommand("Debugger.setPauseOnExceptions", [{"name": "state", "type": "string", "optional": false}], []);
 InspectorBackend.registerCommand("Debugger.setPauseOnAssertions", [{"name": "enabled", "type": "boolean", "optional": false}], []);
 InspectorBackend.registerCommand("Debugger.setPauseForInternalScripts", [{"name": "shouldPause", "type": "boolean", "optional": false}], []);
-InspectorBackend.registerCommand("Debugger.evaluateOnCallFrame", [{"name": "callFrameId", "type": "string", "optional": false}, {"name": "_expression_", "type": "string", "optional": false}, {"name": "objectGroup", "type": "string", "optional": true}, {"name": "includeCommandLineAPI", "type": "boolean", "optional": true}, {"name": "doNotPauseOnExceptionsAndMuteConsole", "type": "boolean", "optional": true}, {"name": "returnByValue", "type": "boolean", "optional": true}, {"name": "generatePreview", "type": "boolean", "optional": true}, {"name": "saveResult", "type": "boolean", &quo
 t;optional": true}, {"name": "emulateUserGesture", "type": "boolean", "optional": true}], ["result", "wasThrown", "savedResultIndex"]);
+InspectorBackend.registerCommand("Debugger.evaluateOnCallFrame", [{"name": "callFrameId", "type": "string", "optional": false}, {"name": "_expression_", "type": "string", "optional": false}, {"name": "objectGroup", "type": "string", "optional": true}, {"name": "includeCommandLineAPI", "type": "boolean", "optional": true}, {"name": "doNotPauseOnExceptionsAndMuteConsole", "type": "boolean", "optional": true}, {"name": "returnByValue", "type": "boolean", "optional": true}, {"name": "generatePreview", "type": "boolean", "optional": true}, {"name": "saveResult", "type": "boolean", "
 ;optional": true}], ["result", "wasThrown", "savedResultIndex"]);
 InspectorBackend.activateDomain("Debugger");
 
 // Heap.

Modified: trunk/Source/WebInspectorUI/Versions/Inspector-iOS-13.0.json (248141 => 248142)


--- trunk/Source/WebInspectorUI/Versions/Inspector-iOS-13.0.json	2019-08-01 23:13:37 UTC (rev 248141)
+++ trunk/Source/WebInspectorUI/Versions/Inspector-iOS-13.0.json	2019-08-02 00:03:46 UTC (rev 248142)
@@ -2154,8 +2154,7 @@
                 { "name": "doNotPauseOnExceptionsAndMuteConsole", "type": "boolean", "optional": true, "description": "Specifies whether evaluation should stop on exceptions and mute console. Overrides setPauseOnException state." },
                 { "name": "returnByValue", "type": "boolean", "optional": true, "description": "Whether the result is expected to be a JSON object that should be sent by value." },
                 { "name": "generatePreview", "type": "boolean", "optional": true, "description": "Whether preview should be generated for the result." },
-                { "name": "saveResult", "type": "boolean", "optional": true, "description": "Whether the resulting value should be considered for saving in the $n history." },
-                { "name": "emulateUserGesture", "type": "boolean", "optional": true, "description": "Whether the _expression_ should be considered to be in a user gesture or not." }
+                { "name": "saveResult", "type": "boolean", "optional": true, "description": "Whether the resulting value should be considered for saving in the $n history." }
             ],
             "returns": [
                 { "name": "result", "$ref": "Runtime.RemoteObject", "description": "Object wrapper for the evaluation result." },
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to