| 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);
|
|
|