diff options
Diffstat (limited to 'mojo/public/dart/src/interface.dart')
-rw-r--r-- | mojo/public/dart/src/interface.dart | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mojo/public/dart/src/interface.dart b/mojo/public/dart/src/interface.dart index 298ab72..76807ed 100644 --- a/mojo/public/dart/src/interface.dart +++ b/mojo/public/dart/src/interface.dart @@ -30,7 +30,7 @@ abstract class Interface { // Read the data and view as a message. var bytes = new ByteData(result.bytesRead); - var handles = new List<RawMojoHandle>(result.handlesRead); + var handles = new List<core.RawMojoHandle>(result.handlesRead); result = _endpoint.read(bytes, result.bytesRead, handles); if (!result.status.isOk && !result.status.isResourceExhausted) { // If something else happens, it means the handle wasn't really ready |