Index: mojo/dart/packages/mojo/lib/src/message_pipe.dart |
diff --git a/mojo/dart/packages/mojo/lib/src/message_pipe.dart b/mojo/dart/packages/mojo/lib/src/message_pipe.dart |
index 7ecf10137393fa855e4f5c67f27b63d9af7f9b37..e687bcd1026fc1304c51381bf7fa9f868f74cfb5 100644 |
--- a/mojo/dart/packages/mojo/lib/src/message_pipe.dart |
+++ b/mojo/dart/packages/mojo/lib/src/message_pipe.dart |
@@ -84,9 +84,9 @@ class MojoMessagePipeEndpoint { |
} |
// handles may be null, otherwise convert to ints. |
- List<int> mojoHandles; |
+ List mojoHandles; |
if (handles != null) { |
- mojoHandles = new List<int>(handles.length); |
+ mojoHandles = new List(handles.length); |
for (int i = 0; i < handles.length; i++) { |
mojoHandles[i] = handles[i].h; |
} |