Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1134)

Unified Diff: runtime/observatory/lib/src/elements/nav/menu_wrapper.dart

Issue 2310003004: Removed polymer & mirror from Observatory (Closed)
Patch Set: Fixed crash in heap-map page Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/observatory/lib/src/elements/nav/menu_wrapper.dart
diff --git a/runtime/observatory/lib/src/elements/nav/menu_wrapper.dart b/runtime/observatory/lib/src/elements/nav/menu_wrapper.dart
deleted file mode 100644
index 3b287fe9ced4b246ecc9ba5eb0275463da545338..0000000000000000000000000000000000000000
--- a/runtime/observatory/lib/src/elements/nav/menu_wrapper.dart
+++ /dev/null
@@ -1,74 +0,0 @@
-// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
-// 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.
-
-import 'dart:html';
-
-import 'package:observatory/app.dart';
-import 'package:observatory/src/elements/helpers/tag.dart';
-import 'package:observatory/src/elements/shims/binding.dart';
-import 'package:observatory/src/elements/nav/menu.dart';
-
-@bindable
-class NavMenuElementWrapper extends HtmlElement {
- static const binder = const Binder<NavMenuElementWrapper>(const {
- 'anchor': #anchor, 'link': #link, 'last': #last
- });
-
- static const tag =
- const Tag<NavMenuElementWrapper>('nav-menu');
-
- String _anchor = '---';
- String _link;
- bool _last = false;
-
- String get anchor => _anchor;
- String get link => _link;
- bool get last => _last;
-
- set anchor(String value) {
- _anchor = value;
- render();
- }
- set link(String value) {
- _link = value;
- render();
- }
- set last(bool value) {
- _last = value;
- render();
- }
-
- NavMenuElementWrapper.created() : super.created() {
- binder.registerCallback(this);
- _anchor = getAttribute('anchor');
- _link = getAttribute('link');
- _last = _getBoolAttribute('last');
- createShadowRoot();
- render();
- }
-
- @override
- void attached() {
- super.attached();
- render();
- }
-
- void render() {
- shadowRoot.children = [];
- if (_anchor == null || _last == null) {
- return;
- }
-
- shadowRoot.children = [
- new NavMenuElement(_anchor, link: '#$_link', last: last,
- queue: ObservatoryApplication.app.queue)
- ..children = [new ContentElement()]
- ];
- }
-
- bool _getBoolAttribute(String name) {
- final String value = getAttribute(name);
- return !(value == null || value == 'false');
- }
-}
« no previous file with comments | « runtime/observatory/lib/src/elements/nav/menu_item_wrapper.dart ('k') | runtime/observatory/lib/src/elements/nav/notify.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698