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

Unified Diff: runtime/bin/socket_patch.dart

Issue 96413003: Fix checked mode failure (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/socket_patch.dart
diff --git a/runtime/bin/socket_patch.dart b/runtime/bin/socket_patch.dart
index 46fdb74446a3c5d8bbb8d1bdd1da275b6ab1d75c..3c81bd96a56b24c94d4aab7d57028790f892893a 100644
--- a/runtime/bin/socket_patch.dart
+++ b/runtime/bin/socket_patch.dart
@@ -307,7 +307,7 @@ class _NativeSocket extends NativeFieldWrapperClass1 {
throw createError(response, "Failed listing interfaces");
} else {
var map = response.skip(1)
- .fold(new Map<String, List<InternetAddress>>(), (map, result) {
+ .fold(new Map<String, NetworkInterface>(), (map, result) {
var type = new InternetAddressType._from(result[0]);
var name = result[3];
var index = result[4];
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698