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

Unified Diff: runtime/bin/vmservice/client/lib/src/observatory/isolate_manager.dart

Issue 50243002: Extend Observatory to display libraries, classes, fields, functions and code. (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/client/lib/src/observatory/isolate_manager.dart
diff --git a/runtime/bin/vmservice/client/lib/src/observatory/isolate_manager.dart b/runtime/bin/vmservice/client/lib/src/observatory/isolate_manager.dart
index 53b262cf4ab286d2cf363a8ad4eb8ba2bb19ef34..93cba6546166282bb7cb661c2f6123ec18ade3fd 100644
--- a/runtime/bin/vmservice/client/lib/src/observatory/isolate_manager.dart
+++ b/runtime/bin/vmservice/client/lib/src/observatory/isolate_manager.dart
@@ -5,7 +5,7 @@
part of observatory;
/// Collection of isolates which are running in the VM. Updated
-class IsolateManager extends ObservableMixin {
+class IsolateManager extends Observable {
ObservatoryApplication _application;
ObservatoryApplication get application => _application;
@@ -34,7 +34,6 @@ class IsolateManager extends ObservableMixin {
});
// Remove them.
deadIsolates.forEach((k) {
- print('Removing ${isolates[k]}');
isolates.remove(k);
});
// Add new isolates.
@@ -43,7 +42,6 @@ class IsolateManager extends ObservableMixin {
var name = k['name'];
if (isolates[id] == null) {
var isolate = new Isolate(id, name);
- print('Adding $isolate');
isolates[id] = isolate;
}
});

Powered by Google App Engine
This is Rietveld 408576698