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

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

Issue 782693004: Update mojo sdk to rev f6c8ec07c01deebc13178d516225fd12695c3dc2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: hack mojo_system_impl gypi for android :| Created 6 years 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
Index: mojo/public/dart/src/interface.dart
diff --git a/mojo/public/dart/src/interface.dart b/mojo/public/dart/src/interface.dart
index 298ab725bf9d27be560baf054f8dc1f680508910..76807ed7fe4bc888a85a94a7591f667b9c73c53c 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

Powered by Google App Engine
This is Rietveld 408576698