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

Unified Diff: runtime/observatory/lib/src/elements/nav/notify.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/notify.dart
diff --git a/runtime/observatory/lib/src/elements/nav/notify.dart b/runtime/observatory/lib/src/elements/nav/notify.dart
index 1566a043884ea5d7827087de5d47c233c3092160..5411e11aac16b7b1cdb55972f728203b2cda70f5 100644
--- a/runtime/observatory/lib/src/elements/nav/notify.dart
+++ b/runtime/observatory/lib/src/elements/nav/notify.dart
@@ -11,7 +11,7 @@ import 'package:observatory/src/elements/nav/notify_event.dart';
import 'package:observatory/src/elements/nav/notify_exception.dart';
class NavNotifyElement extends HtmlElement implements Renderable {
- static const tag = const Tag<NavNotifyElement>('nav-notify-wrapped',
+ static const tag = const Tag<NavNotifyElement>('nav-notify',
dependencies: const [ NavNotifyEventElement.tag,
NavNotifyExceptionElement.tag ]);
@@ -25,7 +25,7 @@ class NavNotifyElement extends HtmlElement implements Renderable {
bool _notifyOnPause;
bool get notifyOnPause => _notifyOnPause;
-
+
set notifyOnPause(bool value) =>
_notifyOnPause = _r.checkAndReact(_notifyOnPause, value);

Powered by Google App Engine
This is Rietveld 408576698