Chromium Code Reviews| Index: sdk/lib/io/http_impl.dart |
| diff --git a/sdk/lib/io/http_impl.dart b/sdk/lib/io/http_impl.dart |
| index fefb7e30a7903f3b95d54ca2a187c39e4e6dd1d4..a2a305f6c4023aa19a3f6b4d5bc8a52fd2255342 100644 |
| --- a/sdk/lib/io/http_impl.dart |
| +++ b/sdk/lib/io/http_impl.dart |
| @@ -1503,6 +1503,7 @@ class _DetachedSocket implements Socket { |
| void destroy() => _socket.destroy(); |
| void add(List<int> data) => _socket.add(data); |
| Future<Socket> close() => _socket.close(); |
| + Future<Socket> get done => _socket.done; |
| } |