Chromium Code Reviews| Index: runtime/bin/vmservice/running_isolates.dart |
| diff --git a/runtime/bin/vmservice/running_isolates.dart b/runtime/bin/vmservice/running_isolates.dart |
| index 36a0c48405ce21ae313a7df5b827e57a12d1086a..db93d089c5d0354599a758d067fa0d1e03bad7ba 100644 |
| --- a/runtime/bin/vmservice/running_isolates.dart |
| +++ b/runtime/bin/vmservice/running_isolates.dart |
| @@ -29,8 +29,9 @@ class RunningIsolates implements MessageRouter { |
| var result = {}; |
| isolates.forEach((portId, runningIsolate) { |
| members.add({ |
| - 'id': portId, |
| - 'name': runningIsolate.name |
| + 'type': 'Isolate', |
| + 'id': 'isolates/$portId', |
| + 'name': runningIsolate.name, |
| }); |
| }); |
|
turnidge
2013/12/19 20:39:29
We may eventually want to re-sync the list with th
Cutch
2013/12/19 21:53:58
Agreed.
|
| result['type'] = 'IsolateList'; |