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

Unified Diff: runtime/observatory/lib/src/app/application.dart

Issue 1965823002: Initial isolate reload support (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 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/observatory/lib/src/app/application.dart
diff --git a/runtime/observatory/lib/src/app/application.dart b/runtime/observatory/lib/src/app/application.dart
index e9f278cc5ecee42de400013950e33bc02b6ab386..0ffe3857cd4aca25208c4b5ad1b55b86ba2b5439 100644
--- a/runtime/observatory/lib/src/app/application.dart
+++ b/runtime/observatory/lib/src/app/application.dart
@@ -101,6 +101,10 @@ class ObservatoryApplication extends Observable {
// Ignore for now.
break;
+ case ServiceEvent.kIsolateReload:
+ notifications.add(new Notification.fromEvent(event));
+ break;
+
case ServiceEvent.kIsolateExit:
case ServiceEvent.kResume:
removePauseEvents(event.isolate);

Powered by Google App Engine
This is Rietveld 408576698