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

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

Issue 2310003004: Removed polymer & mirror from Observatory (Closed)
Patch Set: Fixed crash in heap-map page Created 4 years, 3 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
« no previous file with comments | « runtime/observatory/lib/service.dart ('k') | runtime/observatory/lib/src/app/location_manager.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ff4fd3d1000153f938c8d29e2abffe2942ea75e7..5306b13ba3e4672ead5979805feb713fc48e7835 100644
--- a/runtime/observatory/lib/src/app/application.dart
+++ b/runtime/observatory/lib/src/app/application.dart
@@ -6,7 +6,7 @@ part of app;
/// The observatory application. Instances of this are created and owned
/// by the observatory_application custom element.
-class ObservatoryApplication extends Observable {
+class ObservatoryApplication {
static ObservatoryApplication app;
final RenderingQueue queue = new RenderingQueue();
final TargetRepository targets = new TargetRepository();
@@ -15,7 +15,7 @@ class ObservatoryApplication extends Observable {
final _pageRegistry = new List<Page>();
LocationManager _locationManager;
LocationManager get locationManager => _locationManager;
- @observable Page currentPage;
+ Page currentPage;
VM _vm;
VM get vm => _vm;
@@ -88,9 +88,9 @@ class ObservatoryApplication extends Observable {
}
- @reflectable final ObservatoryApplicationElement rootElement;
+ final ObservatoryApplicationElement rootElement;
- @reflectable ServiceObject lastErrorOrException;
+ ServiceObject lastErrorOrException;
void _initOnce() {
assert(app == null);
« no previous file with comments | « runtime/observatory/lib/service.dart ('k') | runtime/observatory/lib/src/app/location_manager.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698