| Index: runtime/bin/vmservice/client/lib/src/elements/heap_profile.dart
|
| ===================================================================
|
| --- runtime/bin/vmservice/client/lib/src/elements/heap_profile.dart (revision 33596)
|
| +++ runtime/bin/vmservice/client/lib/src/elements/heap_profile.dart (working copy)
|
| @@ -133,10 +133,12 @@
|
| var heap = profile['heaps']['new'];
|
| _newPieDataTable.addRow(['Used', heap['used']]);
|
| _newPieDataTable.addRow(['Free', heap['capacity'] - heap['used']]);
|
| + _newPieDataTable.addRow(['External', heap['external']]);
|
| _oldPieDataTable.clearRows();
|
| heap = profile['heaps']['old'];
|
| _oldPieDataTable.addRow(['Used', heap['used']]);
|
| _oldPieDataTable.addRow(['Free', heap['capacity'] - heap['used']]);
|
| + _oldPieDataTable.addRow(['External', heap['external']]);
|
| _draw();
|
| }
|
|
|
|
|