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

Unified Diff: runtime/bin/directory_impl.dart

Issue 8227014: Fix type mismatch in directory listing. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 2 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 | « 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/directory_impl.dart
diff --git a/runtime/bin/directory_impl.dart b/runtime/bin/directory_impl.dart
index cf90e667037506da9352c6d4f7e322875c30c514..489242c367aafae0eeb09adc76ee1f1cbe590d2a 100644
--- a/runtime/bin/directory_impl.dart
+++ b/runtime/bin/directory_impl.dart
@@ -28,10 +28,10 @@ class _DirectoryListingIsolate extends Isolate {
void _list(String dir,
int id,
bool recursive,
- ReceivePort dirHandler,
- ReceivePort fileHandler,
- ReceivePort doneHandler,
- ReceivePort dirErrorHandler) native "Directory_List";
+ SendPort dirHandler,
+ SendPort fileHandler,
+ SendPort doneHandler,
+ SendPort dirErrorHandler) native "Directory_List";
}
« 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