| Index: runtime/bin/vmservice/client/observatory/packages/observatory/src/observatory_elements/observatory_application.dart
|
| diff --git a/runtime/bin/vmservice/client/observatory/packages/observatory/src/observatory_elements/observatory_application.dart b/runtime/bin/vmservice/client/observatory/packages/observatory/src/observatory_elements/observatory_application.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ff5a84a5b82c4f6450ebf55c2cd85dc36b2be358
|
| --- /dev/null
|
| +++ b/runtime/bin/vmservice/client/observatory/packages/observatory/src/observatory_elements/observatory_application.dart
|
| @@ -0,0 +1,13 @@
|
| +library observatory_application_element;
|
| +
|
| +import 'package:polymer/polymer.dart';
|
| +import 'package:observatory/observatory.dart';
|
| +
|
| +@CustomTag('observatory-application')
|
| +class ObservatoryApplicationElement extends ObservatoryElement {
|
| + void created() {
|
| + super.created();
|
| + app = new ObservatoryApplication();
|
| + app.init();
|
| + }
|
| +}
|
|
|