@@ -2463,6 +2463,10 @@ export module Protocol {
2463
2463
*/
2464
2464
export type setBreakpointForEventListenerParameters = {
2465
2465
eventListenerId : EventListenerId ;
2466
+ /**
2467
+ * Options to apply to this breakpoint to modify its behavior.
2468
+ */
2469
+ options ?: Debugger . BreakpointOptions ;
2466
2470
}
2467
2471
export type setBreakpointForEventListenerReturnValue = {
2468
2472
}
@@ -2976,6 +2980,10 @@ might return multiple quads for inline nodes.
2976
2980
* Type of the operation to stop upon.
2977
2981
*/
2978
2982
type : DOMBreakpointType ;
2983
+ /**
2984
+ * Options to apply to this breakpoint to modify its behavior.
2985
+ */
2986
+ options ?: Debugger . BreakpointOptions ;
2979
2987
}
2980
2988
export type setDOMBreakpointReturnValue = {
2981
2989
}
@@ -3003,6 +3011,10 @@ might return multiple quads for inline nodes.
3003
3011
* The name of the specific event to stop on.
3004
3012
*/
3005
3013
eventName ?: string ;
3014
+ /**
3015
+ * Options to apply to this breakpoint to modify its behavior.
3016
+ */
3017
+ options ?: Debugger . BreakpointOptions ;
3006
3018
}
3007
3019
export type setEventBreakpointReturnValue = {
3008
3020
}
@@ -3030,6 +3042,10 @@ might return multiple quads for inline nodes.
3030
3042
* Whether the URL string is a regular expression.
3031
3043
*/
3032
3044
isRegex ?: boolean ;
3045
+ /**
3046
+ * Options to apply to this breakpoint to modify its behavior.
3047
+ */
3048
+ options ?: Debugger . BreakpointOptions ;
3033
3049
}
3034
3050
export type setURLBreakpointReturnValue = {
3035
3051
}
@@ -3041,6 +3057,10 @@ might return multiple quads for inline nodes.
3041
3057
* Resource URL substring. An empty string will stop pausing on all requests.
3042
3058
*/
3043
3059
url : string ;
3060
+ /**
3061
+ * Whether the URL string is a regular expression.
3062
+ */
3063
+ isRegex ?: boolean ;
3044
3064
}
3045
3065
export type removeURLBreakpointReturnValue = {
3046
3066
}
@@ -3760,6 +3780,10 @@ might return multiple quads for inline nodes.
3760
3780
*/
3761
3781
export type setPauseOnDebuggerStatementsParameters = {
3762
3782
enabled : boolean ;
3783
+ /**
3784
+ * Options to apply to this breakpoint to modify its behavior.
3785
+ */
3786
+ options ?: BreakpointOptions ;
3763
3787
}
3764
3788
export type setPauseOnDebuggerStatementsReturnValue = {
3765
3789
}
@@ -3771,6 +3795,10 @@ might return multiple quads for inline nodes.
3771
3795
* Pause on exceptions mode.
3772
3796
*/
3773
3797
state : "none" | "uncaught" | "all" ;
3798
+ /**
3799
+ * Options to apply to this breakpoint to modify its behavior.
3800
+ */
3801
+ options ?: BreakpointOptions ;
3774
3802
}
3775
3803
export type setPauseOnExceptionsReturnValue = {
3776
3804
}
@@ -3779,6 +3807,10 @@ might return multiple quads for inline nodes.
3779
3807
*/
3780
3808
export type setPauseOnAssertionsParameters = {
3781
3809
enabled : boolean ;
3810
+ /**
3811
+ * Options to apply to this breakpoint to modify its behavior.
3812
+ */
3813
+ options ?: BreakpointOptions ;
3782
3814
}
3783
3815
export type setPauseOnAssertionsReturnValue = {
3784
3816
}
@@ -3787,6 +3819,10 @@ might return multiple quads for inline nodes.
3787
3819
*/
3788
3820
export type setPauseOnMicrotasksParameters = {
3789
3821
enabled : boolean ;
3822
+ /**
3823
+ * Options to apply to this breakpoint to modify its behavior.
3824
+ */
3825
+ options ?: BreakpointOptions ;
3790
3826
}
3791
3827
export type setPauseOnMicrotasksReturnValue = {
3792
3828
}
@@ -4515,15 +4551,6 @@ Left=1, Right=2, Middle=4, Back=8, Forward=16, None=0.
4515
4551
object : Runtime . RemoteObject ;
4516
4552
hints : { [ key : string ] : string } ;
4517
4553
}
4518
- /**
4519
- * Fired when the backend has alternate domains that need to be activated.
4520
- */
4521
- export type activateExtraDomainsPayload = {
4522
- /**
4523
- * Domain names that need activation
4524
- */
4525
- domains : string [ ] ;
4526
- }
4527
4554
4528
4555
/**
4529
4556
* Enables inspector domain notifications.
@@ -6436,10 +6463,7 @@ Left=1, Right=2, Middle=4, Back=8, Forward=16, None=0.
6436
6463
* Forces the given appearance for the page.
6437
6464
*/
6438
6465
export type setForcedAppearanceParameters = {
6439
- /**
6440
- * Appearance name to force. Empty string disables the override.
6441
- */
6442
- appearance : Appearance ;
6466
+ appearance ?: Appearance ;
6443
6467
}
6444
6468
export type setForcedAppearanceReturnValue = {
6445
6469
}
@@ -8359,7 +8383,6 @@ Left=1, Right=2, Middle=4, Back=8, Forward=16, None=0.
8359
8383
"Heap.trackingComplete" : Heap . trackingCompletePayload ;
8360
8384
"Inspector.evaluateForTestInFrontend" : Inspector . evaluateForTestInFrontendPayload ;
8361
8385
"Inspector.inspect" : Inspector . inspectPayload ;
8362
- "Inspector.activateExtraDomains" : Inspector . activateExtraDomainsPayload ;
8363
8386
"LayerTree.layerTreeDidChange" : LayerTree . layerTreeDidChangePayload ;
8364
8387
"Memory.memoryPressure" : Memory . memoryPressurePayload ;
8365
8388
"Memory.trackingStart" : Memory . trackingStartPayload ;
0 commit comments