| Index: mojo/public/dart/src/client.dart
|
| diff --git a/mojo/public/dart/src/client.dart b/mojo/public/dart/src/client.dart
|
| index a05640253d7c093395c473d4929e5db47b323858..f8ec73c00fcac32b75f151f63030b1c352669bbd 100644
|
| --- a/mojo/public/dart/src/client.dart
|
| +++ b/mojo/public/dart/src/client.dart
|
| @@ -12,10 +12,14 @@ abstract class Client extends core.MojoEventStreamListener {
|
| _completerMap = {},
|
| super(endpoint);
|
|
|
| - Client.fromHandle(int handle) :
|
| + Client.fromHandle(core.MojoHandle handle) :
|
| _completerMap = {},
|
| super.fromHandle(handle);
|
|
|
| + Client.unbound() :
|
| + _completerMap = {},
|
| + super.unbound();
|
| +
|
| void handleResponse(ServiceMessage reader);
|
|
|
| void handleRead() {
|
|
|