| Index: runtime/bin/vmservice/client/lib/src/observatory_elements/observatory_element.dart
|
| diff --git a/runtime/bin/vmservice/client/lib/src/observatory_elements/observatory_element.dart b/runtime/bin/vmservice/client/lib/src/observatory_elements/observatory_element.dart
|
| index 55f92240b64f156cb56157ca684777182e8965e7..a104984c0e1f7f18a34d2fdbc53872ee1a99315f 100644
|
| --- a/runtime/bin/vmservice/client/lib/src/observatory_elements/observatory_element.dart
|
| +++ b/runtime/bin/vmservice/client/lib/src/observatory_elements/observatory_element.dart
|
| @@ -12,6 +12,16 @@ export 'package:observatory/observatory.dart';
|
| /// [ObservableApplication] and applies author styles.
|
| @CustomTag('observatory-element')
|
| class ObservatoryElement extends PolymerElement {
|
| - @published ObservatoryApplication get app => __$app; ObservatoryApplication __$app; set app(ObservatoryApplication value) { __$app = notifyPropertyChange(#app, __$app, value); }
|
| + ObservatoryElement.created() : super.created();
|
| +
|
| + void enteredView() {
|
| + super.enteredView();
|
| + }
|
| +
|
| + void leftView() {
|
| + super.leftView();
|
| + }
|
| +
|
| + @published ObservatoryApplication app;
|
| bool get applyAuthorStyles => true;
|
| }
|
|
|