Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions dwds/lib/src/services/chrome_proxy_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -859,6 +859,14 @@ ${globalLoadStrategy.loadModuleSnippet}("dart_sdk").developer.invokeExtension(
static Future<T> _rpcNotSupportedFuture<T>(String method) {
return Future.error(_rpcNotSupported(method));
}

@override
Future<ProcessMemoryUsage> getProcessMemoryUsage() =>
_rpcNotSupportedFuture('getProcessMemoryUsage');

@override
Future<WebSocketTarget> getWebSocketTarget() =>
_rpcNotSupportedFuture('getWebSocketTarget');
}

/// The `type`s of [ConsoleAPIEvent]s that are treated as `stderr` logs.
Expand Down
2 changes: 1 addition & 1 deletion dwds/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies:
source_maps: ^0.10.0
sse: ^3.5.0
# We pin the version because we implement the interface.
vm_service: 4.1.0
vm_service: 4.2.0
web_socket_channel: ^1.0.0
webkit_inspection_protocol: ^0.7.3

Expand Down