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

Unified Diff: runtime/bin/vmservice/running_isolate.dart

Issue 38703009: Update VM service to new isolate API (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
Index: runtime/bin/vmservice/running_isolate.dart
diff --git a/runtime/bin/vmservice/running_isolate.dart b/runtime/bin/vmservice/running_isolate.dart
index 13b358a1becc614515bd205c21179a4eb951fde3..cf726c8524caa756cfc7c4fcb4be892e0805eb6d 100644
--- a/runtime/bin/vmservice/running_isolate.dart
+++ b/runtime/bin/vmservice/running_isolate.dart
@@ -5,10 +5,11 @@
part of vmservice;
class RunningIsolate implements ServiceRequestRouter {
+ final int portId;
final SendPort sendPort;
final String name;
- RunningIsolate(this.sendPort, this.name);
+ RunningIsolate(this.portId, this.sendPort, this.name);
Future sendMessage(List request) {
final completer = new Completer.sync();

Powered by Google App Engine
This is Rietveld 408576698