| Index: runtime/bin/vmservice/client/lib/src/observatory_elements/class_view.dart
|
| diff --git a/runtime/bin/vmservice/client/lib/src/observatory_elements/navigation_bar.dart b/runtime/bin/vmservice/client/lib/src/observatory_elements/class_view.dart
|
| similarity index 62%
|
| copy from runtime/bin/vmservice/client/lib/src/observatory_elements/navigation_bar.dart
|
| copy to runtime/bin/vmservice/client/lib/src/observatory_elements/class_view.dart
|
| index 6206b7966883d5ea710084f64f82b25e20264900..8eeaf527241262fe2de637ce4d7cbfba5a157ce6 100644
|
| --- a/runtime/bin/vmservice/client/lib/src/observatory_elements/navigation_bar.dart
|
| +++ b/runtime/bin/vmservice/client/lib/src/observatory_elements/class_view.dart
|
| @@ -2,11 +2,13 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -library navigation_bar_element;
|
| +library class_view_element;
|
|
|
| -import 'observatory_element.dart';
|
| import 'package:polymer/polymer.dart';
|
| +import 'observatory_element.dart';
|
|
|
| -@CustomTag('navigation-bar')
|
| -class NavigationBarElement extends ObservatoryElement {
|
| +@CustomTag('class-view')
|
| +class ClassViewElement extends ObservatoryElement {
|
| + @published Map cls;
|
| + ClassViewElement.created() : super.created();
|
| }
|
|
|