@@ -45,7 +45,7 @@ internal class BrowserContext : ChannelOwner, IBrowserContext
45
45
private readonly BrowserContextInitializer _initializer ;
46
46
private readonly Tracing _tracing ;
47
47
internal readonly IAPIRequestContext _request ;
48
- private readonly IDictionary < string , HarRecorder > _harRecorders = new Dictionary < string , HarRecorder > ( ) ;
48
+ private readonly Dictionary < string , HarRecorder > _harRecorders = new ( ) ;
49
49
internal readonly List < IWorker > _serviceWorkers = new ( ) ;
50
50
private List < RouteHandler > _routes = new ( ) ;
51
51
internal readonly List < Page > _pages = new ( ) ;
@@ -737,12 +737,12 @@ private async Task UnrouteInternalAsync(List<RouteHandler> removed, List<RouteHa
737
737
await Task . WhenAll ( tasks ) . ConfigureAwait ( false ) ;
738
738
}
739
739
740
- private Task UpdateInterceptionAsync ( )
740
+ private async Task UpdateInterceptionAsync ( )
741
741
{
742
742
var patterns = RouteHandler . PrepareInterceptionPatterns ( _routes ) ;
743
- return SendMessageToServerAsync (
743
+ await SendMessageToServerAsync (
744
744
"setNetworkInterceptionPatterns" ,
745
- patterns ) ;
745
+ patterns ) . ConfigureAwait ( false ) ;
746
746
}
747
747
748
748
internal void OnClose ( )
@@ -779,7 +779,7 @@ private void Channel_BindingCall(BindingCall bindingCall)
779
779
780
780
private void Channel_Route ( object sender , Route route ) => _ = OnRouteAsync ( route ) . ConfigureAwait ( false ) ;
781
781
782
- private Task ExposeBindingAsync ( string name , Delegate callback , bool handle = false )
782
+ private async Task ExposeBindingAsync ( string name , Delegate callback , bool handle = false )
783
783
{
784
784
foreach ( var page in _pages )
785
785
{
@@ -796,13 +796,13 @@ private Task ExposeBindingAsync(string name, Delegate callback, bool handle = fa
796
796
797
797
_bindings . Add ( name , callback ) ;
798
798
799
- return SendMessageToServerAsync (
799
+ await SendMessageToServerAsync (
800
800
"exposeBinding" ,
801
801
new Dictionary < string , object >
802
802
{
803
803
[ "name" ] = name ,
804
804
[ "needsHandle" ] = handle ,
805
- } ) ;
805
+ } ) . ConfigureAwait ( false ) ;
806
806
}
807
807
808
808
private HarContentPolicy ? RouteFromHarUpdateContentPolicyToHarContentPolicy ( RouteFromHarUpdateContentPolicy ? policy )
0 commit comments