File tree Expand file tree Collapse file tree
gen-src/ChromeDevtoolsProtocol Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -359,7 +359,7 @@ public function getLayoutMetrics(ContextInterface $ctx): GetLayoutMetricsRespons
359359
360360
361361 /**
362- * Call Page.getManifestIcons command .
362+ * Deprecated because it's not guaranteed that the returned icon is in fact the one used for PWA installation .
363363 *
364364 * @param ContextInterface $ctx
365365 *
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace ChromeDevtoolsProtocol \Model \Page ;
4+
5+ /**
6+ * Enum of possible auto-reponse for permisison / prompt dialogs.
7+ *
8+ * @generated This file has been auto-generated, do not edit.
9+ *
10+ * @author Jakub Kulhan <jakub.kulhan@gmail.com>
11+ */
12+ final class AutoResponseModeEnum
13+ {
14+ public const NONE = 'none ' ;
15+ public const AUTO_ACCEPT = 'autoAccept ' ;
16+ public const AUTO_REJECT = 'autoReject ' ;
17+ public const AUTO_OPT_OUT = 'autoOptOut ' ;
18+ }
Original file line number Diff line number Diff line change 1867618676 }
1867718677 ]
1867818678 },
18679+ {
18680+ "id": "AutoResponseMode",
18681+ "description": "Enum of possible auto-reponse for permisison / prompt dialogs.",
18682+ "experimental": true,
18683+ "type": "string",
18684+ "enum": [
18685+ "none",
18686+ "autoAccept",
18687+ "autoReject",
18688+ "autoOptOut"
18689+ ]
18690+ },
1867918691 {
1868018692 "id": "NavigationType",
1868118693 "description": "The type of a frameNavigated event.",
1935419366 },
1935519367 {
1935619368 "name": "getManifestIcons",
19369+ "description": "Deprecated because it's not guaranteed that the returned icon is in fact the one used for PWA installation.",
1935719370 "experimental": true,
19371+ "deprecated": true,
1935819372 "returns": [
1935919373 {
1936019374 "name": "primaryIcon",
2002920043 "parameters": [
2003020044 {
2003120045 "name": "mode",
20032- "type": "string",
20033- "enum": [
20034- "none",
20035- "autoaccept",
20036- "autoreject"
20037- ]
20046+ "$ref": "AutoResponseMode"
2003820047 }
2003920048 ]
2004020049 },
2004520054 "parameters": [
2004620055 {
2004720056 "name": "mode",
20048- "type": "string",
20049- "enum": [
20050- "none",
20051- "autoAccept",
20052- "autoReject",
20053- "autoOptOut"
20054- ]
20057+ "$ref": "AutoResponseMode"
2005520058 }
2005620059 ]
2005720060 },
Original file line number Diff line number Diff line change 1- 0f8562d776aac1b305a8a1a135b692b5 protocol.json
1+ 5c863c8b68025aed1c42add2b97620eb protocol.json
You can’t perform that action at this time.
0 commit comments