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

Unified Diff: tests/isolate/src/MandelIsolateTest.dart

Issue 9652001: SendPort + ReceivePort changes: (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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 | « tests/isolate/src/IsolateNegativeTest.dart ('k') | tests/isolate/src/Message2Test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/isolate/src/MandelIsolateTest.dart
diff --git a/tests/isolate/src/MandelIsolateTest.dart b/tests/isolate/src/MandelIsolateTest.dart
index e7cc482c27c9b2d54f58c77aa8e18962b0f16825..e658068ee5cfa30571de374b6d5651f3e75bca82 100644
--- a/tests/isolate/src/MandelIsolateTest.dart
+++ b/tests/isolate/src/MandelIsolateTest.dart
@@ -88,7 +88,7 @@ class LineProcessorClient {
void processLine(int y) {
_out.then((SendPort p) {
- p.call(y).receive((List<int> message, SendPort replyTo) {
+ p.call(y).then((List<int> message) {
_state.notifyProcessedLine(this, y, message);
});
});
« no previous file with comments | « tests/isolate/src/IsolateNegativeTest.dart ('k') | tests/isolate/src/Message2Test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698