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

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

Issue 457803002: Initial UI for Metrics in Observatory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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/observatory/lib/src/app/application.dart
diff --git a/runtime/bin/vmservice/observatory/lib/src/app/application.dart b/runtime/bin/vmservice/observatory/lib/src/app/application.dart
index 84a5ae219a42515801db66914c6e5054c97f6b69..a181669156f27a6809c778603572771e440ec1ad 100644
--- a/runtime/bin/vmservice/observatory/lib/src/app/application.dart
+++ b/runtime/bin/vmservice/observatory/lib/src/app/application.dart
@@ -75,7 +75,7 @@ class ObservatoryApplication extends Observable {
removePauseEvents(event.isolate);
// vm.reload();
break;
-
+
case 'BreakpointResolved':
event.isolate.reloadBreakpoints();
break;
@@ -99,6 +99,7 @@ class ObservatoryApplication extends Observable {
_pageRegistry.add(new ClassTreePage(this));
_pageRegistry.add(new VMConnectPage(this));
_pageRegistry.add(new ErrorViewPage(this));
+ _pageRegistry.add(new MetricsPage(this));
// Note that ServiceObjectPage must be the last entry in the list as it is
// the catch all.
_pageRegistry.add(new ServiceObjectPage(this));

Powered by Google App Engine
This is Rietveld 408576698