| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 library isolate_element; | |
| 6 | |
| 7 import 'package:observatory/app.dart'; | |
| 8 import 'package:polymer/polymer.dart'; | |
| 9 import 'observatory_element.dart'; | |
| 10 | |
| 11 /// Base class for all custom elements which reference an isolate. | |
| 12 /// Holds an observable [Isolate]. | |
| 13 @CustomTag('isolate-element') | |
| 14 class IsolateElement extends ObservatoryElement { | |
| 15 IsolateElement.created() : super.created(); | |
| 16 @published Isolate isolate; | |
| 17 } | |
| OLD | NEW |