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