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

Unified Diff: runtime/observatory/lib/src/elements/vm_connect_target_wrapper.dart

Issue 2184873002: Removed dynamic Symbol creation and marked Bindable classes (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « runtime/observatory/lib/src/elements/shims/binding.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/elements/vm_connect_target_wrapper.dart
diff --git a/runtime/observatory/lib/src/elements/vm_connect_target_wrapper.dart b/runtime/observatory/lib/src/elements/vm_connect_target_wrapper.dart
index 1034061535c83ac9306d3287243e89968f31391b..0285062d3860f3170a75747d5d6505bfbd8b27ea 100644
--- a/runtime/observatory/lib/src/elements/vm_connect_target_wrapper.dart
+++ b/runtime/observatory/lib/src/elements/vm_connect_target_wrapper.dart
@@ -3,15 +3,18 @@
// BSD-style license that can be found in the LICENSE file.
import 'dart:html';
+
import 'package:observatory/app.dart';
import 'package:observatory/service_html.dart';
import 'package:observatory/src/elements/helpers/tag.dart';
import 'package:observatory/src/elements/shims/binding.dart';
import 'package:observatory/src/elements/vm_connect_target.dart';
+@bindable
class VMConnectTargetElementWrapper extends HtmlElement {
- static final binder = new Binder<VMConnectTargetElementWrapper>(
- const [const Binding('target')]);
+ static const binder = const Binder<VMConnectTargetElementWrapper>(const {
+ 'target': #target
+ });
static const tag =
const Tag<VMConnectTargetElementWrapper>('vm-connect-target');
« no previous file with comments | « runtime/observatory/lib/src/elements/shims/binding.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698