44
55import 'package:dwds/src/dwds_vm_client.dart' ;
66import 'package:dwds/src/events.dart' ;
7- import 'package:dwds/src/services/chrome_proxy_service.dart'
8- show ChromeProxyService;
97import 'package:dwds/src/services/debug_service.dart' ;
108import 'package:dwds/src/services/proxy_service.dart' ;
119
@@ -56,8 +54,7 @@ class ChromeAppDebugServices implements AppDebugServices {
5654 set connectedInstanceId (String ? id) => _connectedInstanceId = id;
5755
5856 @override
59- ProxyService get proxyService =>
60- debugService.chromeProxyService as ChromeProxyService ;
57+ ProxyService get proxyService => debugService.chromeProxyService;
6158
6259 @override
6360 Future <void > close () =>
@@ -69,7 +66,8 @@ class WebSocketAppDebugServices implements AppDebugServices {
6966 final WebSocketDebugService _debugService;
7067 final WebSocketDwdsVmClient _dwdsVmClient;
7168 Future <void >? _closed;
72- String ? _connectedInstanceId;
69+ @override
70+ String ? connectedInstanceId;
7371
7472 WebSocketAppDebugServices (this ._debugService, this ._dwdsVmClient);
7573
@@ -79,12 +77,6 @@ class WebSocketAppDebugServices implements AppDebugServices {
7977 @override
8078 DwdsVmClient get dwdsVmClient => _dwdsVmClient;
8179
82- @override
83- String ? get connectedInstanceId => _connectedInstanceId;
84-
85- @override
86- set connectedInstanceId (String ? id) => _connectedInstanceId = id;
87-
8880 // WebSocket-only service - Chrome/DDS features not available
8981 @override
9082 DwdsStats ? get dwdsStats => null ;
0 commit comments