File tree Expand file tree Collapse file tree 4 files changed +36
-15
lines changed
gen-src/ChromeDevtoolsProtocol Expand file tree Collapse file tree 4 files changed +36
-15
lines changed Original file line number Diff line number Diff line change @@ -359,7 +359,7 @@ public function getLayoutMetrics(ContextInterface $ctx): GetLayoutMetricsRespons
359
359
360
360
361
361
/**
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 .
363
363
*
364
364
* @param ContextInterface $ctx
365
365
*
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 <[email protected] >
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 18676
18676
}
18677
18677
]
18678
18678
},
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
+ },
18679
18691
{
18680
18692
"id": "NavigationType",
18681
18693
"description": "The type of a frameNavigated event.",
19354
19366
},
19355
19367
{
19356
19368
"name": "getManifestIcons",
19369
+ "description": "Deprecated because it's not guaranteed that the returned icon is in fact the one used for PWA installation.",
19357
19370
"experimental": true,
19371
+ "deprecated": true,
19358
19372
"returns": [
19359
19373
{
19360
19374
"name": "primaryIcon",
20029
20043
"parameters": [
20030
20044
{
20031
20045
"name": "mode",
20032
- "type": "string",
20033
- "enum": [
20034
- "none",
20035
- "autoaccept",
20036
- "autoreject"
20037
- ]
20046
+ "$ref": "AutoResponseMode"
20038
20047
}
20039
20048
]
20040
20049
},
20045
20054
"parameters": [
20046
20055
{
20047
20056
"name": "mode",
20048
- "type": "string",
20049
- "enum": [
20050
- "none",
20051
- "autoAccept",
20052
- "autoReject",
20053
- "autoOptOut"
20054
- ]
20057
+ "$ref": "AutoResponseMode"
20055
20058
}
20056
20059
]
20057
20060
},
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