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

Unified Diff: lib/custom_element.dart

Issue 20863002: Introduce boot.js: this finally makes it possible to load and run Todomvc (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: review comments, fixed build.dart Created 7 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
Index: lib/custom_element.dart
diff --git a/lib/custom_element.dart b/lib/custom_element.dart
index 410469007015a8064b94e9487289e2baa63bd029..59e1e16b7301820c72163b03886fe4b4548e8207 100644
--- a/lib/custom_element.dart
+++ b/lib/custom_element.dart
@@ -189,8 +189,8 @@ abstract class CustomElement implements Element {
get isTemplate => host.isTemplate;
get ref => host.ref;
get content => host.content;
- DocumentFragment createInstance(model, String syntax) =>
- host.createInstance(model, syntax);
+ DocumentFragment createInstance(model, BindingDelegate delegate) =>
+ host.createInstance(model, delegate);
void bind(String name, model, String path) => host.bind(name, model, path);
void unbind(String name) => host.unbind(name);
void unbindAll() => host.unbindAll();

Powered by Google App Engine
This is Rietveld 408576698