File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -307,7 +307,6 @@ final class ChromeDwdsVmClient
307307
308308 static Future <ChromeDwdsVmClient > create (
309309 ChromeDebugService debugService,
310- DwdsStats dwdsStats,
311310 Uri ? ddsUri,
312311 ) async {
313312 final dwdsVmClient = ChromeDwdsVmClient (debugService: debugService);
Original file line number Diff line number Diff line change @@ -851,11 +851,7 @@ class DevHandler {
851851 if (_ddsConfig.enable) {
852852 dds = await debugService.startDartDevelopmentService ();
853853 }
854- final vmClient = await ChromeDwdsVmClient .create (
855- debugService,
856- dwdsStats,
857- dds? .wsUri,
858- );
854+ final vmClient = await ChromeDwdsVmClient .create (debugService, dds? .wsUri);
859855 final appDebugService = AppDebugServices (
860856 debugService: debugService,
861857 dwdsVmClient: vmClient,
Original file line number Diff line number Diff line change @@ -81,7 +81,11 @@ final class ChromeDebugService extends DebugService<ChromeProxyService> {
8181 executionContext: executionContext,
8282 expressionCompiler: expressionCompiler,
8383 );
84- await debugService.initialize (proxyService: chromeProxyService);
84+ await debugService.initialize (
85+ proxyService: chromeProxyService,
86+ onRequest: onRequest,
87+ onResponse: onResponse,
88+ );
8589 return debugService;
8690 }
8791
Original file line number Diff line number Diff line change @@ -190,6 +190,7 @@ abstract class DebugService<T extends ProxyService> {
190190 }
191191
192192 @protected
193+ @mustCallSuper
193194 void handleConnection (
194195 StreamChannel channel,
195196 ProxyService proxyService,
You can’t perform that action at this time.
0 commit comments