4
4
5
5
import 'package:dwds/src/dwds_vm_client.dart' ;
6
6
import 'package:dwds/src/events.dart' ;
7
- import 'package:dwds/src/services/chrome_proxy_service.dart'
8
- show ChromeProxyService;
9
7
import 'package:dwds/src/services/debug_service.dart' ;
10
8
import 'package:dwds/src/services/proxy_service.dart' ;
11
9
@@ -56,8 +54,7 @@ class ChromeAppDebugServices implements AppDebugServices {
56
54
set connectedInstanceId (String ? id) => _connectedInstanceId = id;
57
55
58
56
@override
59
- ProxyService get proxyService =>
60
- debugService.chromeProxyService as ChromeProxyService ;
57
+ ProxyService get proxyService => debugService.chromeProxyService;
61
58
62
59
@override
63
60
Future <void > close () =>
@@ -69,7 +66,8 @@ class WebSocketAppDebugServices implements AppDebugServices {
69
66
final WebSocketDebugService _debugService;
70
67
final WebSocketDwdsVmClient _dwdsVmClient;
71
68
Future <void >? _closed;
72
- String ? _connectedInstanceId;
69
+ @override
70
+ String ? connectedInstanceId;
73
71
74
72
WebSocketAppDebugServices (this ._debugService, this ._dwdsVmClient);
75
73
@@ -79,12 +77,6 @@ class WebSocketAppDebugServices implements AppDebugServices {
79
77
@override
80
78
DwdsVmClient get dwdsVmClient => _dwdsVmClient;
81
79
82
- @override
83
- String ? get connectedInstanceId => _connectedInstanceId;
84
-
85
- @override
86
- set connectedInstanceId (String ? id) => _connectedInstanceId = id;
87
-
88
80
// WebSocket-only service - Chrome/DDS features not available
89
81
@override
90
82
DwdsStats ? get dwdsStats => null ;
0 commit comments