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

Unified Diff: runtime/bin/vmservice/client/lib/src/elements/observatory_application.dart

Issue 308673012: Redo LocationManager to use HTML5 History API (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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/bin/vmservice/client/lib/src/elements/observatory_application.dart
diff --git a/runtime/bin/vmservice/client/lib/src/elements/observatory_application.dart b/runtime/bin/vmservice/client/lib/src/elements/observatory_application.dart
index d1a4f8d6e44375b802374c3380fb094a0f5f95a0..50c5edd7f3bb578e5f9d96d62acd1c57dc275f80 100644
--- a/runtime/bin/vmservice/client/lib/src/elements/observatory_application.dart
+++ b/runtime/bin/vmservice/client/lib/src/elements/observatory_application.dart
@@ -14,16 +14,16 @@ import 'package:polymer/polymer.dart';
@CustomTag('observatory-application')
class ObservatoryApplicationElement extends ObservatoryElement {
@published bool devtools = false;
- @published ObservatoryApplication app;
+ @reflectable ObservatoryApplication app;
ObservatoryApplicationElement.created() : super.created();
enteredView() {
super.enteredView();
if (devtools) {
- app = new ObservatoryApplication.devtools();
+ app = new ObservatoryApplication.devtools(this);
} else {
- app = new ObservatoryApplication();
+ app = new ObservatoryApplication(this);
}
}
}

Powered by Google App Engine
This is Rietveld 408576698