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

Unified Diff: runtime/lib/isolate_patch.dart

Issue 73783002: Make SendPortImpl_internalSend not take a reply port as argument. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove TODO 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 | « runtime/lib/isolate.cc ('k') | runtime/vm/bootstrap_natives.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/isolate_patch.dart
diff --git a/runtime/lib/isolate_patch.dart b/runtime/lib/isolate_patch.dart
index 686e7f94d64328888eea7e7732eaac2e34777cd8..46e4f4039fb0280e74acec775d4b2dd9a71c2e31 100644
--- a/runtime/lib/isolate_patch.dart
+++ b/runtime/lib/isolate_patch.dart
@@ -113,7 +113,7 @@ class _RawReceivePortImpl implements RawReceivePort {
class _SendPortImpl implements SendPort {
/*--- public interface ---*/
void send(var message) {
- _sendInternal(_id, 0, message);
+ _sendInternal(_id, message);
}
bool operator==(var other) {
@@ -142,8 +142,7 @@ class _SendPortImpl implements SendPort {
// Forward the implementation of sending messages to the VM. Only port ids
// are being handed to the VM.
- // TODO(14731): Remove replyId argument.
- static _sendInternal(int sendId, int replyId, var message)
+ static _sendInternal(int sendId, var message)
native "SendPortImpl_sendInternal_";
final int _id;
« no previous file with comments | « runtime/lib/isolate.cc ('k') | runtime/vm/bootstrap_natives.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698