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

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

Issue 1013563002: CPU profile displayed in three tables with a tree (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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 090d3003b47f4f9a49845ec9bf4460678dad5394..cbed6f3e1cb1df1780bd0889c3f06318a4c2bf05 100644
--- a/runtime/observatory/lib/src/app/application.dart
+++ b/runtime/observatory/lib/src/app/application.dart
@@ -104,6 +104,7 @@ class ObservatoryApplication extends Observable {
_pageRegistry.add(new ClassTreePage(this));
_pageRegistry.add(new DebuggerPage(this));
_pageRegistry.add(new CpuProfilerPage(this));
+ _pageRegistry.add(new TableCpuProfilerPage(this));
_pageRegistry.add(new AllocationProfilerPage(this));
_pageRegistry.add(new HeapMapPage(this));
_pageRegistry.add(new VMConnectPage(this));
@@ -195,7 +196,7 @@ class ObservatoryApplication extends Observable {
}
ObservatoryApplication(this.rootElement) :
- locationManager = new HashLocationManager(),
+ locationManager = new LocationManager(),
targets = new TargetManager() {
vm = new WebSocketVM(targets.defaultTarget);
_initOnce(false);

Powered by Google App Engine
This is Rietveld 408576698