Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1286)

Unified Diff: mojo/public/dart/src/client.dart

Issue 851173002: Dart: Encode/Decode handle and interface types. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Fix Interface encode parameters Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/public/dart/src/buffer.dart ('k') | mojo/public/dart/src/codec.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() {
« no previous file with comments | « mojo/public/dart/src/buffer.dart ('k') | mojo/public/dart/src/codec.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698