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

Unified Diff: lib/web_ui.dart

Issue 18399006: Fixes in webui for sdk 0.6.3 (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: 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
« no previous file with comments | « no previous file | pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/web_ui.dart
diff --git a/lib/web_ui.dart b/lib/web_ui.dart
index b7d6a37652981e0b42b4037e00f9fc3bbbea428c..40da1bc4fab5e2a1648336bf1b3199b0ed176c75 100644
--- a/lib/web_ui.dart
+++ b/lib/web_ui.dart
@@ -134,7 +134,8 @@ abstract class WebComponent implements Element {
get isTemplate => host.isTemplate;
get ref => host.ref;
get content => host.content;
- DocumentFragment createInstance() => host.createInstance();
+ DocumentFragment createInstance(model, String syntax) =>
+ host.createInstance(model, syntax);
void bind(String name, model, String path) => host.bind(name, model, path);
void unbind(String name) => host.unbind(name);
void unbindAll() => host.unbindAll();
« no previous file with comments | « no previous file | pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698