1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
package Torello.Browser.BrowserAPI;

// *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
// Java-HTML Imports
// *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***

import Torello.Browser.*;
import Torello.Browser.helper.*;
import Torello.Browser.JavaScriptAPI.*;
import Torello.JSON.*;

import Torello.Java.ReadOnly.ReadOnlyList;
import Torello.Java.ReadOnly.ReadOnlyArrayList;

import Torello.JavaDoc.Annotations.StaticFunctional;
import Torello.JavaDoc.Annotations.JDHeaderBackgroundImg;

import Torello.Browser.BrowserAPI.NestedHelpers.Commands.Browser$$Commands;


// *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
// JDK Imports
// *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***

import javax.json.JsonObject;
import javax.json.JsonValue;

/**
 * <SPAN CLASS=COPIEDJDK><B>The Browser domain defines methods and events for browser managing.</B></SPAN>
 * <EMBED CLASS='external-html' DATA-FILE-ID=CDP.CODE_GEN_NOTE>
 */
@StaticFunctional@JDHeaderBackgroundImg(EmbedTagFileID="CDP.WOOD_PLANK_NOTE")
public class Browser
{
    // No Pubic Constructors
    private Browser() { }


    // ********************************************************************************************
    // ********************************************************************************************
    // Eliminated Types
    // ********************************************************************************************
    // ********************************************************************************************


    /**
     * <CODE>[No Description Provided by Google]</CODE>
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>

     * <EMBED CLASS='external-html' DATA-CTAS='String' DATA-FILE-ID=CDP.EliminatedType
     *     DATA-NAME=BrowserContextID>
     */
    public static final String BrowserContextID =
        "BrowserContextID has been eliminated.\n" +
        "It was replaced with the standard Java-Type: String";

    /**
     * <CODE>[No Description Provided by Google]</CODE>
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>

     * <EMBED CLASS='external-html' DATA-CTAS='int' DATA-FILE-ID=CDP.EliminatedType
     *     DATA-NAME=WindowID>
     */
    public static final String WindowID =
        "WindowID has been eliminated.\n" +
        "It was replaced with the standard Java-Type: int";


    // ********************************************************************************************
    // ********************************************************************************************
    // Enumerated String Constants Lists
    // ********************************************************************************************
    // ********************************************************************************************


    /**
     * Browser command ids used by executeBrowserCommand.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * <BR /><BR /><B CLASS=StrEnumType>String-Enumeration Type</B>
     */
    public static final ReadOnlyList<String> BrowserCommandId = new ReadOnlyArrayList<>
        (String.class, "closeTabSearch", "openGlic", "openTabSearch");

    /**
     * <CODE>[No Description Provided by Google]</CODE>
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * <BR /><BR /><B CLASS=StrEnumType>String-Enumeration Type</B>
     */
    public static final ReadOnlyList<String> PermissionSetting = new ReadOnlyArrayList<>
        (String.class, "denied", "granted", "prompt");

    /**
     * <CODE>[No Description Provided by Google]</CODE>
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * <BR /><BR /><B CLASS=StrEnumType>String-Enumeration Type</B>
     */
    public static final ReadOnlyList<String> PermissionType = new ReadOnlyArrayList<>(
        String.class, 
        "ar", "audioCapture", "automaticFullscreen", "backgroundFetch", "backgroundSync",
        "cameraPanTiltZoom", "capturedSurfaceControl", "clipboardReadWrite",
        "clipboardSanitizedWrite", "displayCapture", "durableStorage", "geolocation",
        "handTracking", "idleDetection", "keyboardLock", "localFonts", "localNetworkAccess", "midi",
        "midiSysex", "nfc", "notifications", "paymentHandler", "periodicBackgroundSync",
        "pointerLock", "protectedMediaIdentifier", "sensors", "smartCard", "speakerSelection",
        "storageAccess", "topLevelStorageAccess", "videoCapture", "vr", "wakeLockScreen",
        "wakeLockSystem", "webAppInstallation", "webPrinting", "windowManagement"
    );

    /**
     * <CODE>[No Description Provided by Google]</CODE>
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * <BR /><BR /><B CLASS=StrEnumType>String-Enumeration Type</B>
     */
    public static final ReadOnlyList<String> PrivacySandboxAPI = new ReadOnlyArrayList<>
        (String.class, "BiddingAndAuctionServices", "TrustedKeyValue");

    /**
     * The state of the browser window.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * <BR /><BR /><B CLASS=StrEnumType>String-Enumeration Type</B>
     */
    public static final ReadOnlyList<String> WindowState = new ReadOnlyArrayList<>
        (String.class, "fullscreen", "maximized", "minimized", "normal");



    // ********************************************************************************************
    // ********************************************************************************************
    // Basic Types
    // ********************************************************************************************
    // ********************************************************************************************


    /**
     * Browser window bounds information
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * <EMBED CLASS=globalDefs DATA-DOMAIN=Browser DATA-API=BrowserAPI>
     */
    @JDHeaderBackgroundImg(EmbedTagFileID="CDP.NESTED_TYPE_JDHBI")
    public static class Bounds
        extends BaseType<Bounds>
        implements java.io.Serializable
    {
        /** <EMBED CLASS='external-html' DATA-FILE-ID=SVUID> */
        protected static final long serialVersionUID = 1;

        private static final NestedHelper<Browser.Bounds> singleton =
            Torello.Browser.BrowserAPI.NestedHelpers.Types.
                Browser$$Bounds$$.singleton;

        /**
         * The offset from the left edge of the screen to the window in pixels.
         * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
         */
        public final Integer left;

        /**
         * The offset from the top edge of the screen to the window in pixels.
         * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
         */
        public final Integer top;

        /**
         * The window width in pixels.
         * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
         */
        public final Integer width;

        /**
         * The window height in pixels.
         * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
         */
        public final Integer height;

        /**
         * The window state. Default to normal.
         * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
         * <EMBED CLASS='external-html' DATA-D=Browser DATA-C=WindowState DATA-F=windowState DATA-FILE-ID=CDP.EL2>
         * @see BaseType#enumStrList(String)
         */
        public final String windowState;

        /** Constructor.  Please review this class' fields for documentation. */
        public Bounds(
                ReadOnlyList<Boolean> isPresent, Integer left, Integer top, Integer width,
                Integer height, String windowState
            )
        {
            super(singleton, Domains.Browser, "Bounds", 5);

            this.left           = left;
            this.top            = top;
            this.width          = width;
            this.height         = height;
            this.windowState    = windowState;

            this.isPresent = (isPresent == null)
                ? singleton.generateIsPresentList(this)
                : THROWS.check(isPresent, 5, "Browser.Bounds");
        }

        /** Creates an instance of this class from a {@link JsonObject}.*/
        public static Bounds fromJSON(JsonObject jo)
        { return singleton.fromJSON(jo); }

        /** Returns this class's {@link NestedDescriptor} singleton-instance. class / type.*/
        public static NestedDescriptor<Bounds> descriptor()
        { return singleton.descriptor(); }
    }

    /**
     * Chrome histogram bucket.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * <EMBED CLASS=globalDefs DATA-DOMAIN=Browser DATA-API=BrowserAPI>
     */
    @JDHeaderBackgroundImg(EmbedTagFileID="CDP.NESTED_TYPE_JDHBI")
    public static class Bucket
        extends BaseType<Bucket>
        implements java.io.Serializable
    {
        /** <EMBED CLASS='external-html' DATA-FILE-ID=SVUID> */
        protected static final long serialVersionUID = 1;

        private static final NestedHelper<Browser.Bucket> singleton =
            Torello.Browser.BrowserAPI.NestedHelpers.Types.
                Browser$$Bucket$$.singleton;

        /** Minimum value (inclusive). */
        public final int low;

        /** Maximum value (exclusive). */
        public final int high;

        /** Number of samples. */
        public final int count;

        /** Constructor.  Please review this class' fields for documentation. */
        public Bucket(ReadOnlyList<Boolean> isPresent, int low, int high, int count)
        {
            super(singleton, Domains.Browser, "Bucket", 3);

            this.low    = low;
            this.high   = high;
            this.count  = count;

            this.isPresent = (isPresent == null)
                ? singleton.generateIsPresentList(this)
                : THROWS.check(isPresent, 3, "Browser.Bucket");
        }

        /** Creates an instance of this class from a {@link JsonObject}.*/
        public static Bucket fromJSON(JsonObject jo)
        { return singleton.fromJSON(jo); }

        /** Returns this class's {@link NestedDescriptor} singleton-instance. class / type.*/
        public static NestedDescriptor<Bucket> descriptor()
        { return singleton.descriptor(); }
    }

    /**
     * Chrome histogram.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * <EMBED CLASS=globalDefs DATA-DOMAIN=Browser DATA-API=BrowserAPI>
     */
    @JDHeaderBackgroundImg(EmbedTagFileID="CDP.NESTED_TYPE_JDHBI")
    public static class Histogram
        extends BaseType<Histogram>
        implements java.io.Serializable
    {
        /** <EMBED CLASS='external-html' DATA-FILE-ID=SVUID> */
        protected static final long serialVersionUID = 1;

        private static final NestedHelper<Browser.Histogram> singleton =
            Torello.Browser.BrowserAPI.NestedHelpers.Types.
                Browser$$Histogram$$.singleton;

        /** Name. */
        public final String name;

        /** Sum of sample values. */
        public final int sum;

        /** Total number of samples. */
        public final int count;

        /** Buckets. */
        public final Browser.Bucket[] buckets;

        /** Constructor.  Please review this class' fields for documentation. */
        public Histogram
            (ReadOnlyList<Boolean> isPresent, String name, int sum, int count, Bucket[] buckets)
        {
            super(singleton, Domains.Browser, "Histogram", 4);

            this.name       = name;
            this.sum        = sum;
            this.count      = count;
            this.buckets    = buckets;

            this.isPresent = (isPresent == null)
                ? singleton.generateIsPresentList(this)
                : THROWS.check(isPresent, 4, "Browser.Histogram");
        }

        /** Creates an instance of this class from a {@link JsonObject}.*/
        public static Histogram fromJSON(JsonObject jo)
        { return singleton.fromJSON(jo); }

        /** Returns this class's {@link NestedDescriptor} singleton-instance. class / type.*/
        public static NestedDescriptor<Histogram> descriptor()
        { return singleton.descriptor(); }
    }

    /**
     * Definition of PermissionDescriptor defined in the Permissions API:
     * https://w3c.github.io/permissions/#dom-permissiondescriptor.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * <EMBED CLASS=globalDefs DATA-DOMAIN=Browser DATA-API=BrowserAPI>
     */
    @JDHeaderBackgroundImg(EmbedTagFileID="CDP.NESTED_TYPE_JDHBI")
    public static class PermissionDescriptor
        extends BaseType<PermissionDescriptor>
        implements java.io.Serializable
    {
        /** <EMBED CLASS='external-html' DATA-FILE-ID=SVUID> */
        protected static final long serialVersionUID = 1;

        private static final NestedHelper<Browser.PermissionDescriptor> singleton =
            Torello.Browser.BrowserAPI.NestedHelpers.Types.
                Browser$$PermissionDescriptor$$.singleton;

        /**
         * Name of permission.
         * See https://cs.chromium.org/chromium/src/third_party/blink/renderer/modules/permissions/permission_descriptor.idl for valid permission names.
         */
        public final String name;

        /**
         * For "midi" permission, may also specify sysex control.
         * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
         */
        public final Boolean sysex;

        /**
         * For "push" permission, may specify userVisibleOnly.
         * Note that userVisibleOnly = true is the only currently supported type.
         * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
         */
        public final Boolean userVisibleOnly;

        /**
         * For "clipboard" permission, may specify allowWithoutSanitization.
         * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
         */
        public final Boolean allowWithoutSanitization;

        /**
         * For "fullscreen" permission, must specify allowWithoutGesture:true.
         * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
         */
        public final Boolean allowWithoutGesture;

        /**
         * For "camera" permission, may specify panTiltZoom.
         * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
         */
        public final Boolean panTiltZoom;

        /** Constructor.  Please review this class' fields for documentation. */
        public PermissionDescriptor(
                ReadOnlyList<Boolean> isPresent, String name, Boolean sysex,
                Boolean userVisibleOnly, Boolean allowWithoutSanitization,
                Boolean allowWithoutGesture, Boolean panTiltZoom
            )
        {
            super(singleton, Domains.Browser, "PermissionDescriptor", 6);

            this.name                       = name;
            this.sysex                      = sysex;
            this.userVisibleOnly            = userVisibleOnly;
            this.allowWithoutSanitization   = allowWithoutSanitization;
            this.allowWithoutGesture        = allowWithoutGesture;
            this.panTiltZoom                = panTiltZoom;

            this.isPresent = (isPresent == null)
                ? singleton.generateIsPresentList(this)
                : THROWS.check(isPresent, 6, "Browser.PermissionDescriptor");
        }

        /** Creates an instance of this class from a {@link JsonObject}.*/
        public static PermissionDescriptor fromJSON(JsonObject jo)
        { return singleton.fromJSON(jo); }

        /** Returns this class's {@link NestedDescriptor} singleton-instance. class / type.*/
        public static NestedDescriptor<PermissionDescriptor> descriptor()
        { return singleton.descriptor(); }
    }


    // ********************************************************************************************
    // ********************************************************************************************
    // Command-Return Types
    // ********************************************************************************************
    // ********************************************************************************************


    /**
     * Returns version information.
     * 
     * <EMBED CLASS=globalDefs DATA-DOMAIN=Browser DATA-API=BrowserAPI DATA-CMD=getVersion>
     * @see Browser#getVersion
     */
    @JDHeaderBackgroundImg(EmbedTagFileID="CDP.NESTED_CMD_JDHBI")
    public static class getVersion$$RET
        extends BaseType<getVersion$$RET>
        implements java.io.Serializable
    {
        /** <EMBED CLASS='external-html' DATA-FILE-ID=SVUID> */
        protected static final long serialVersionUID = 1;

        private static final NestedHelper<Browser.getVersion$$RET> singleton =
            Torello.Browser.BrowserAPI.NestedHelpers.CmdReturns.
                Browser$$getVersion$$RET.singleton;

        /** Protocol version. */
        public final String protocolVersion;

        /** Product name. */
        public final String product;

        /** Product revision. */
        public final String revision;

        /** User-Agent. */
        public final String userAgent;

        /** V8 version. */
        public final String jsVersion;

        /** Constructor.  Please review this class' fields for documentation. */
        public getVersion$$RET(
                ReadOnlyList<Boolean> isPresent, String protocolVersion, String product,
                String revision, String userAgent, String jsVersion
            )
        {
            super(singleton, Domains.Browser, "getVersion", 5);

            this.protocolVersion    = protocolVersion;
            this.product            = product;
            this.revision           = revision;
            this.userAgent          = userAgent;
            this.jsVersion          = jsVersion;

            this.isPresent = (isPresent == null)
                ? singleton.generateIsPresentList(this)
                : THROWS.check(isPresent, 5, "Browser.getVersion$$RET");
        }

        /** Creates an instance of this class from a {@link JsonObject}.*/
        public static getVersion$$RET fromJSON(JsonObject jo)
        { return singleton.fromJSON(jo); }

        /** Returns this class's {@link NestedDescriptor} singleton-instance. class / type.*/
        public static NestedDescriptor<getVersion$$RET> descriptor()
        { return singleton.descriptor(); }
    }

    /**
     * Get the browser window that contains the devtools target.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * <EMBED CLASS=globalDefs DATA-DOMAIN=Browser DATA-API=BrowserAPI DATA-CMD=getWindowForTarget>
     * @see Browser#getWindowForTarget
     */
    @JDHeaderBackgroundImg(EmbedTagFileID="CDP.NESTED_CMD_JDHBI")
    public static class getWindowForTarget$$RET
        extends BaseType<getWindowForTarget$$RET>
        implements java.io.Serializable
    {
        /** <EMBED CLASS='external-html' DATA-FILE-ID=SVUID> */
        protected static final long serialVersionUID = 1;

        private static final NestedHelper<Browser.getWindowForTarget$$RET> singleton =
            Torello.Browser.BrowserAPI.NestedHelpers.CmdReturns.
                Browser$$getWindowForTarget$$RET.singleton;

        /** Browser window id. */
        public final int windowId;

        /**
         * Bounds information of the window. When window state is 'minimized', the restored window
         * position and size are returned.
         */
        public final Browser.Bounds bounds;

        /** Constructor.  Please review this class' fields for documentation. */
        public getWindowForTarget$$RET
            (ReadOnlyList<Boolean> isPresent, int windowId, Bounds bounds)
        {
            super(singleton, Domains.Browser, "getWindowForTarget", 2);

            this.windowId   = windowId;
            this.bounds     = bounds;

            this.isPresent = (isPresent == null)
                ? singleton.generateIsPresentList(this)
                : THROWS.check(isPresent, 2, "Browser.getWindowForTarget$$RET");
        }

        /** Creates an instance of this class from a {@link JsonObject}.*/
        public static getWindowForTarget$$RET fromJSON(JsonObject jo)
        { return singleton.fromJSON(jo); }

        /** Returns this class's {@link NestedDescriptor} singleton-instance. class / type.*/
        public static NestedDescriptor<getWindowForTarget$$RET> descriptor()
        { return singleton.descriptor(); }
    }


    // ********************************************************************************************
    // ********************************************************************************************
    // Event Types
    // ********************************************************************************************
    // ********************************************************************************************


    /**
     * Fired when download makes progress. Last call has |done| == true.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * <EMBED CLASS=globalDefs DATA-DOMAIN=Browser DATA-API=BrowserAPI>
     */
    @JDHeaderBackgroundImg(EmbedTagFileID="CDP.NESTED_EVENT_JDHBI")
    public static class downloadProgress
        extends BrowserEvent<downloadProgress>
        implements java.io.Serializable
    {
        /** <EMBED CLASS='external-html' DATA-FILE-ID=SVUID> */
        protected static final long serialVersionUID = 1;

        private static final NestedHelper<Browser.downloadProgress> singleton =
            Torello.Browser.BrowserAPI.NestedHelpers.Events.
                Browser$$downloadProgress$$.singleton;

        /** Global unique identifier of the download. */
        public final String guid;

        /** Total expected bytes to download. */
        public final Number totalBytes;

        /** Total bytes received. */
        public final Number receivedBytes;

        /**
         * Download status.
         * <EMBED CLASS='external-html' DATA-D=Browser DATA-C=downloadProgress DATA-F=state DATA-FILE-ID=CDP.EL1>
         * @see BaseType#enumStrList(String)
         */
        public final String state;

        /**
         * If download is "completed", provides the path of the downloaded file.
         * Depending on the platform, it is not guaranteed to be set, nor the file
         * is guaranteed to exist.
         * <BR /><B CLASS=Opt-Top>OPTIONAL</B><B CLASS=Exp-Top>EXPERIMENTAL</B>
         */
        public final String filePath;

        /** Constructor.  Please review this class' fields for documentation. */
        public downloadProgress(
                ReadOnlyList<Boolean> isPresent, String guid, Number totalBytes,
                Number receivedBytes, String state, String filePath
            )
        {
            super(singleton, Domains.Browser, "downloadProgress", 5);

            this.guid           = guid;
            this.totalBytes     = totalBytes;
            this.receivedBytes  = receivedBytes;
            this.state          = state;
            this.filePath       = filePath;

            this.isPresent = (isPresent == null)
                ? singleton.generateIsPresentList(this)
                : THROWS.check(isPresent, 5, "Browser.downloadProgress");
        }

        /** Creates an instance of this class from a {@link JsonObject}.*/
        public static downloadProgress fromJSON(JsonObject jo)
        { return singleton.fromJSON(jo); }

        /** Returns this class's {@link NestedDescriptor} singleton-instance. class / type.*/
        public static NestedDescriptor<downloadProgress> descriptor()
        { return singleton.descriptor(); }
    }

    /**
     * Fired when page is about to start a download.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * <EMBED CLASS=globalDefs DATA-DOMAIN=Browser DATA-API=BrowserAPI>
     */
    @JDHeaderBackgroundImg(EmbedTagFileID="CDP.NESTED_EVENT_JDHBI")
    public static class downloadWillBegin
        extends BrowserEvent<downloadWillBegin>
        implements java.io.Serializable
    {
        /** <EMBED CLASS='external-html' DATA-FILE-ID=SVUID> */
        protected static final long serialVersionUID = 1;

        private static final NestedHelper<Browser.downloadWillBegin> singleton =
            Torello.Browser.BrowserAPI.NestedHelpers.Events.
                Browser$$downloadWillBegin$$.singleton;

        /** Id of the frame that caused the download to begin. */
        public final String frameId;

        /** Global unique identifier of the download. */
        public final String guid;

        /** URL of the resource being downloaded. */
        public final String url;

        /** Suggested file name of the resource (the actual name of the file saved on disk may differ). */
        public final String suggestedFilename;

        /** Constructor.  Please review this class' fields for documentation. */
        public downloadWillBegin(
                ReadOnlyList<Boolean> isPresent, String frameId, String guid, String url,
                String suggestedFilename
            )
        {
            super(singleton, Domains.Browser, "downloadWillBegin", 4);

            this.frameId            = frameId;
            this.guid               = guid;
            this.url                = url;
            this.suggestedFilename  = suggestedFilename;

            this.isPresent = (isPresent == null)
                ? singleton.generateIsPresentList(this)
                : THROWS.check(isPresent, 4, "Browser.downloadWillBegin");
        }

        /** Creates an instance of this class from a {@link JsonObject}.*/
        public static downloadWillBegin fromJSON(JsonObject jo)
        { return singleton.fromJSON(jo); }

        /** Returns this class's {@link NestedDescriptor} singleton-instance. class / type.*/
        public static NestedDescriptor<downloadWillBegin> descriptor()
        { return singleton.descriptor(); }
    }




    // ********************************************************************************************
    // ********************************************************************************************
    // Commands
    // ********************************************************************************************
    // ********************************************************************************************


    /**
     * Configures encryption keys used with a given privacy sandbox API to talk
     * to a trusted coordinator.  Since this is intended for test automation only,
     * coordinatorOrigin must be a .test domain. No existing coordinator
     * configuration for the origin may exist.
     * 
     * @param api -
     * 
     * @param coordinatorOrigin -
     * 
     * @param keyConfig -
     * 
     * @param browserContextId 
     * BrowserContext to perform the action in. When omitted, default browser
     * context is used.
     * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
     * 
     * @return An instance of <CODE>{@link Script}&lt;Void&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <Void>} to ensure that
     * the Browser Function has run to completion.
     * </DIV>
     */
    public static Script<Void> addPrivacySandboxCoordinatorKeyConfig
        (String api, String coordinatorOrigin, String keyConfig, String browserContextId)
    {
        // Convert all Method Parameters into a JSON Request-Object (as a String)
        final String requestJSON = WriteJSON.get(
            Browser$$Commands.addPrivacySandboxCoordinatorKeyConfig$$,
            "Browser.addPrivacySandboxCoordinatorKeyConfig",
            api, coordinatorOrigin, keyConfig, browserContextId
        );

        return Script.NO_RET(Domains.Browser, "addPrivacySandboxCoordinatorKeyConfig", requestJSON);
    }

    /**
     * Allows a site to use privacy sandbox features that require enrollment
     * without the site actually being enrolled. Only supported on page targets.
     * 
     * @param url -
     * 
     * @return An instance of <CODE>{@link Script}&lt;Void&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <Void>} to ensure that
     * the Browser Function has run to completion.
     * </DIV>
     */
    public static Script<Void> addPrivacySandboxEnrollmentOverride(String url)
    {
        // Build the JSON Request-Object (as a String); only 1 Parameter is passed
        final String requestJSON = WriteJSON.get
            (CDPTypes.STRING, "url", false, "Browser.addPrivacySandboxEnrollmentOverride", url);

        return Script.NO_RET(Domains.Browser, "addPrivacySandboxEnrollmentOverride", requestJSON);
    }

    /**
     * Cancel a download if in progress
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * 
     * @param guid Global unique identifier of the download.
     * 
     * @param browserContextId BrowserContext to perform the action in. When omitted, default browser context is used.
     * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
     * 
     * @return An instance of <CODE>{@link Script}&lt;Void&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <Void>} to ensure that
     * the Browser Function has run to completion.
     * </DIV>
     */
    public static Script<Void> cancelDownload(String guid, String browserContextId)
    {
        // Convert all Method Parameters into a JSON Request-Object (as a String)
        final String requestJSON = WriteJSON.get(
            Browser$$Commands.cancelDownload$$, "Browser.cancelDownload",
            guid, browserContextId
        );

        return Script.NO_RET(Domains.Browser, "cancelDownload", requestJSON);
    }

    /**
     * Close browser gracefully.
     * 
     * @return An instance of <CODE>{@link Script}&lt;Void&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <Void>} to ensure that
     * the Browser Function has run to completion.
     * </DIV>
     */
    public static Script<Void> close()
    {
        // Ultra-Simple Request JSON - Because this method has no parameters
        final String requestJSON = "{\"method\":\"Browser.close\"}";

        return Script.NO_RET(Domains.Browser, "close", requestJSON);
    }

    /**
     * Crashes browser on the main thread.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * 
     * @return An instance of <CODE>{@link Script}&lt;Void&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <Void>} to ensure that
     * the Browser Function has run to completion.
     * </DIV>
     */
    public static Script<Void> crash()
    {
        // Ultra-Simple Request JSON - Because this method has no parameters
        final String requestJSON = "{\"method\":\"Browser.crash\"}";

        return Script.NO_RET(Domains.Browser, "crash", requestJSON);
    }

    /**
     * Crashes GPU process.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * 
     * @return An instance of <CODE>{@link Script}&lt;Void&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <Void>} to ensure that
     * the Browser Function has run to completion.
     * </DIV>
     */
    public static Script<Void> crashGpuProcess()
    {
        // Ultra-Simple Request JSON - Because this method has no parameters
        final String requestJSON = "{\"method\":\"Browser.crashGpuProcess\"}";

        return Script.NO_RET(Domains.Browser, "crashGpuProcess", requestJSON);
    }

    /**
     * Invoke custom browser commands used by telemetry.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * 
     * @param commandId -
     * 
     * @return An instance of <CODE>{@link Script}&lt;Void&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <Void>} to ensure that
     * the Browser Function has run to completion.
     * </DIV>
     */
    public static Script<Void> executeBrowserCommand(String commandId)
    {
        // Build the JSON Request-Object (as a String); only 1 Parameter is passed
        final String requestJSON = WriteJSON.get
            (CDPTypes.STRING, "commandId", false, "Browser.executeBrowserCommand", commandId);

        return Script.NO_RET(Domains.Browser, "executeBrowserCommand", requestJSON);
    }

    /**
     * Returns the command line switches for the browser process if, and only if
     * --enable-automation is on the commandline.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * 
     * @return An instance of <CODE>{@link Script}&lt;String[]&gt;</CODE>
     * 
     * <BR /><BR />This <B>script</B> may be <B STYLE='color: red'>executed</B>, using
     * {@link Script#exec(WebSocketSender) Script.exec}, and afterwards, a {@link Promise}
     * <CODE>&lt;String[]&gt;</CODE> will be returned
     *
     * <BR /><BR />Finally, the <B>{@code Promise}</B> may be <B STYLE='color: red'>awaited</B>,
     * using {@link Promise#await()}, <I>and the returned result of this Browser Function may
     * be retrieved.</I>
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser Function's {@code Promise} returns:
     * <CODE>String[] (<B>arguments</B>)</CODE>
     * <BR />
     * Commandline parameters
     * </DIV>
     */
    public static Script<String[]> getBrowserCommandLine()
    {
        // Ultra-Simple Request JSON - Because this method has no parameters
        final String requestJSON = "{\"method\":\"Browser.getBrowserCommandLine\"}";

        return new Script<>(
            Domains.Browser, "getBrowserCommandLine", requestJSON,
            Browser$$Commands::getBrowserCommandLine,
            String[].class
        );
    }

    /**
     * Get a Chrome histogram by name.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * 
     * @param name Requested histogram name.
     * 
     * @param delta If true, retrieve delta since last delta call.
     * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
     * 
     * @return An instance of <CODE>{@link Script}&lt;{@link Browser.Histogram}&gt;</CODE>
     * 
     * <BR /><BR />This <B>script</B> may be <B STYLE='color: red'>executed</B>, using
     * {@link Script#exec(WebSocketSender) Script.exec}, and afterwards, a {@link Promise}
     * <CODE>&lt;{@link Browser.Histogram}&gt;</CODE> will be returned
     *
     * <BR /><BR />Finally, the <B>{@code Promise}</B> may be <B STYLE='color: red'>awaited</B>,
     * using {@link Promise#await()}, <I>and the returned result of this Browser Function may
     * be retrieved.</I>
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser Function's {@code Promise} returns:
     * <CODE>{@link Browser.Histogram} (<B>histogram</B>)</CODE>
     * <BR />
     * Histogram.
     * </DIV>
     */
    public static Script<Browser.Histogram> getHistogram(String name, Boolean delta)
    {
        // Convert all Method Parameters into a JSON Request-Object (as a String)
        final String requestJSON = WriteJSON.get(
            Browser$$Commands.getHistogram$$, "Browser.getHistogram",
            name, delta
        );

        return new Script<>(
            Domains.Browser, "getHistogram", requestJSON,
            Browser$$Commands::getHistogram,
            Browser.Histogram.class
        );
    }

    /**
     * Get Chrome histograms.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * 
     * @param query 
     * Requested substring in name. Only histograms which have query as a
     * substring in their name are extracted. An empty or absent query returns
     * all histograms.
     * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
     * 
     * @param delta If true, retrieve delta since last delta call.
     * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
     * 
     * @return An instance of <CODE>{@link Script}&lt;{@link Browser.Histogram}[]&gt;</CODE>
     * 
     * <BR /><BR />This <B>script</B> may be <B STYLE='color: red'>executed</B>, using
     * {@link Script#exec(WebSocketSender) Script.exec}, and afterwards, a {@link Promise}
     * <CODE>&lt;{@link Browser.Histogram}[]&gt;</CODE> will be returned
     *
     * <BR /><BR />Finally, the <B>{@code Promise}</B> may be <B STYLE='color: red'>awaited</B>,
     * using {@link Promise#await()}, <I>and the returned result of this Browser Function may
     * be retrieved.</I>
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser Function's {@code Promise} returns:
     * <CODE>{@link Browser.Histogram}[] (<B>histograms</B>)</CODE>
     * <BR />
     * Histograms.
     * </DIV>
     */
    public static Script<Browser.Histogram[]> getHistograms(String query, Boolean delta)
    {
        // Convert all Method Parameters into a JSON Request-Object (as a String)
        final String requestJSON = WriteJSON.get(
            Browser$$Commands.getHistograms$$, "Browser.getHistograms",
            query, delta
        );

        return new Script<>(
            Domains.Browser, "getHistograms", requestJSON,
            Browser$$Commands::getHistograms,
            Browser.Histogram[].class
        );
    }

    /**
     * Returns version information.
     * 
     * @return An instance of <CODE>{@link Script}&lt;{@link getVersion$$RET}&gt;</CODE>
     * 
     * <BR /><BR />This <B>script</B> may be <B STYLE='color: red'>executed</B>, using
     * {@link Script#exec(WebSocketSender) Script.exec}, and afterwards, a {@link Promise}
     * <CODE>&lt;{@link getVersion$$RET}&gt;</CODE> will be returned
     *
     * <BR /><BR />Finally, the <B>{@code Promise}</B> may be <B STYLE='color: red'>awaited</B>,
     * using {@link Promise#await()}, <I>and the returned result of this Browser Function may
     * be retrieved.</I>
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser Function's {@code Promise} returns:{@link getVersion$$RET}
     * A dedicated return type implies that the browser may return more than 1 datum
     * </DIV>
     */
    public static Script<getVersion$$RET> getVersion()
    {
        // Ultra-Simple Request JSON - Because this method has no parameters
        final String requestJSON = "{\"method\":\"Browser.getVersion\"}";

        return new Script<>(
            Domains.Browser, "getVersion", requestJSON,
            getVersion$$RET::fromJSON,
            getVersion$$RET.class
        );
    }

    /**
     * Get position and size of the browser window.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * 
     * @param windowId Browser window id.
     * 
     * @return An instance of <CODE>{@link Script}&lt;{@link Browser.Bounds}&gt;</CODE>
     * 
     * <BR /><BR />This <B>script</B> may be <B STYLE='color: red'>executed</B>, using
     * {@link Script#exec(WebSocketSender) Script.exec}, and afterwards, a {@link Promise}
     * <CODE>&lt;{@link Browser.Bounds}&gt;</CODE> will be returned
     *
     * <BR /><BR />Finally, the <B>{@code Promise}</B> may be <B STYLE='color: red'>awaited</B>,
     * using {@link Promise#await()}, <I>and the returned result of this Browser Function may
     * be retrieved.</I>
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser Function's {@code Promise} returns:
     * <CODE>{@link Browser.Bounds} (<B>bounds</B>)</CODE>
     * <BR />
     * Bounds information of the window. When window state is 'minimized', the restored window
     *     position and size are returned.
     * </DIV>
     */
    public static Script<Browser.Bounds> getWindowBounds(int windowId)
    {
        // Build the JSON Request-Object (as a String); only 1 Parameter is passed
        final String requestJSON = WriteJSON.get
            (CDPTypes.PRIMITIVE_INT, "windowId", false, "Browser.getWindowBounds", windowId);

        return new Script<>(
            Domains.Browser, "getWindowBounds", requestJSON,
            Browser$$Commands::getWindowBounds,
            Browser.Bounds.class
        );
    }

    /**
     * Get the browser window that contains the devtools target.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * 
     * @param targetId Devtools agent host id. If called as a part of the session, associated targetId is used.
     * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
     * 
     * @return An instance of <CODE>{@link Script}&lt;{@link getWindowForTarget$$RET}&gt;</CODE>
     * 
     * <BR /><BR />This <B>script</B> may be <B STYLE='color: red'>executed</B>, using
     * {@link Script#exec(WebSocketSender) Script.exec}, and afterwards, a {@link Promise}
     * <CODE>&lt;{@link getWindowForTarget$$RET}&gt;</CODE> will be returned
     *
     * <BR /><BR />Finally, the <B>{@code Promise}</B> may be <B STYLE='color: red'>awaited</B>,
     * using {@link Promise#await()}, <I>and the returned result of this Browser Function may
     * be retrieved.</I>
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser Function's {@code Promise} returns:{@link getWindowForTarget$$RET}
     * A dedicated return type implies that the browser may return more than 1 datum
     * </DIV>
     */
    public static Script<getWindowForTarget$$RET> getWindowForTarget(String targetId)
    {
        // Build the JSON Request-Object (as a String); only 1 Parameter is passed
        final String requestJSON = WriteJSON.get
            (CDPTypes.STRING, "targetId", true, "Browser.getWindowForTarget", targetId);

        return new Script<>(
            Domains.Browser, "getWindowForTarget", requestJSON,
            getWindowForTarget$$RET::fromJSON,
            getWindowForTarget$$RET.class
        );
    }

    /**
     * Grant specific permissions to the given origin and reject all others.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * 
     * @param permissions -
     * 
     * @param origin Origin the permission applies to, all origins if not specified.
     * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
     * 
     * @param browserContextId BrowserContext to override permissions. When omitted, default browser context is used.
     * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
     * 
     * @return An instance of <CODE>{@link Script}&lt;Void&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <Void>} to ensure that
     * the Browser Function has run to completion.
     * </DIV>
     */
    public static Script<Void> grantPermissions
        (String[] permissions, String origin, String browserContextId)
    {
        // Convert all Method Parameters into a JSON Request-Object (as a String)
        final String requestJSON = WriteJSON.get(
            Browser$$Commands.grantPermissions$$, "Browser.grantPermissions",
            permissions, origin, browserContextId
        );

        return Script.NO_RET(Domains.Browser, "grantPermissions", requestJSON);
    }

    /**
     * Reset all permission management for all origins.
     * 
     * @param browserContextId BrowserContext to reset permissions. When omitted, default browser context is used.
     * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
     * 
     * @return An instance of <CODE>{@link Script}&lt;Void&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <Void>} to ensure that
     * the Browser Function has run to completion.
     * </DIV>
     */
    public static Script<Void> resetPermissions(String browserContextId)
    {
        // Build the JSON Request-Object (as a String); only 1 Parameter is passed
        final String requestJSON = WriteJSON.get(
            CDPTypes.STRING, "browserContextId", true, "Browser.resetPermissions",
            browserContextId
        );

        return Script.NO_RET(Domains.Browser, "resetPermissions", requestJSON);
    }

    /**
     * Set size of the browser contents resizing browser window as necessary.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * 
     * @param windowId Browser window id.
     * 
     * @param width 
     * The window contents width in DIP. Assumes current width if omitted.
     * Must be specified if 'height' is omitted.
     * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
     * 
     * @param height 
     * The window contents height in DIP. Assumes current height if omitted.
     * Must be specified if 'width' is omitted.
     * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
     * 
     * @return An instance of <CODE>{@link Script}&lt;Void&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <Void>} to ensure that
     * the Browser Function has run to completion.
     * </DIV>
     */
    public static Script<Void> setContentsSize(int windowId, Integer width, Integer height)
    {
        // Convert all Method Parameters into a JSON Request-Object (as a String)
        final String requestJSON = WriteJSON.get(
            Browser$$Commands.setContentsSize$$, "Browser.setContentsSize",
            windowId, width, height
        );

        return Script.NO_RET(Domains.Browser, "setContentsSize", requestJSON);
    }

    /**
     * Set dock tile details, platform-specific.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * 
     * @param badgeLabel -
     * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
     * 
     * @param image Png encoded image. (Encoded as a base64 string when passed over JSON)
     * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
     * 
     * @return An instance of <CODE>{@link Script}&lt;Void&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <Void>} to ensure that
     * the Browser Function has run to completion.
     * </DIV>
     */
    public static Script<Void> setDockTile(String badgeLabel, String image)
    {
        // Convert all Method Parameters into a JSON Request-Object (as a String)
        final String requestJSON = WriteJSON.get(
            Browser$$Commands.setDockTile$$, "Browser.setDockTile",
            badgeLabel, image
        );

        return Script.NO_RET(Domains.Browser, "setDockTile", requestJSON);
    }

    /**
     * Set the behavior when downloading a file.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * 
     * @param behavior 
     * Whether to allow all or deny all download requests, or use default Chrome behavior if
     * available (otherwise deny). |allowAndName| allows download and names files according to
     * their download guids.
     * <BR />Acceptable Values: ["allow", "allowAndName", "default", "deny"]
     * 
     * @param browserContextId BrowserContext to set download behavior. When omitted, default browser context is used.
     * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
     * 
     * @param downloadPath 
     * The default path to save downloaded files to. This is required if behavior is set to 'allow'
     * or 'allowAndName'.
     * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
     * 
     * @param eventsEnabled Whether to emit download events (defaults to false).
     * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
     * 
     * @return An instance of <CODE>{@link Script}&lt;Void&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <Void>} to ensure that
     * the Browser Function has run to completion.
     * </DIV>
     */
    public static Script<Void> setDownloadBehavior
        (String behavior, String browserContextId, String downloadPath, Boolean eventsEnabled)
    {
        // Convert all Method Parameters into a JSON Request-Object (as a String)
        final String requestJSON = WriteJSON.get(
            Browser$$Commands.setDownloadBehavior$$, "Browser.setDownloadBehavior",
            behavior, browserContextId, downloadPath, eventsEnabled
        );

        return Script.NO_RET(Domains.Browser, "setDownloadBehavior", requestJSON);
    }

    /**
     * Set permission settings for given origin.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * 
     * @param permission Descriptor of permission to override.
     * 
     * @param setting Setting of the permission.
     * 
     * @param origin Origin the permission applies to, all origins if not specified.
     * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
     * 
     * @param browserContextId Context to override. When omitted, default browser context is used.
     * <BR /><B CLASS=Opt-Top>OPTIONAL</B>
     * 
     * @return An instance of <CODE>{@link Script}&lt;Void&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <Void>} to ensure that
     * the Browser Function has run to completion.
     * </DIV>
     */
    public static Script<Void> setPermission
        (PermissionDescriptor permission, String setting, String origin, String browserContextId)
    {
        // Convert all Method Parameters into a JSON Request-Object (as a String)
        final String requestJSON = WriteJSON.get(
            Browser$$Commands.setPermission$$, "Browser.setPermission",
            permission, setting, origin, browserContextId
        );

        return Script.NO_RET(Domains.Browser, "setPermission", requestJSON);
    }

    /**
     * Set position and/or size of the browser window.
     * 
     * <BR /><B CLASS=Exp-Top>EXPERIMENTAL</B>
     * 
     * @param windowId Browser window id.
     * 
     * @param bounds 
     * New window bounds. The 'minimized', 'maximized' and 'fullscreen' states cannot be combined
     * with 'left', 'top', 'width' or 'height'. Leaves unspecified fields unchanged.
     * 
     * @return An instance of <CODE>{@link Script}&lt;Void&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR /><DIV CLASS=JDHint>
     * This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <Void>} to ensure that
     * the Browser Function has run to completion.
     * </DIV>
     */
    public static Script<Void> setWindowBounds(int windowId, Bounds bounds)
    {
        // Convert all Method Parameters into a JSON Request-Object (as a String)
        final String requestJSON = WriteJSON.get(
            Browser$$Commands.setWindowBounds$$, "Browser.setWindowBounds",
            windowId, bounds
        );

        return Script.NO_RET(Domains.Browser, "setWindowBounds", requestJSON);
    }


}