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

Unified Diff: lib/web_ui.dart

Issue 20592003: Updates web-ui to match SDK 0.6.13 (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 | no next file » | 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 3bd565b2538c4d23e421ba5ef6448af625a045da..9ae6f411d308cbbfa8bd96628d3036858b0b9a11 100644
--- a/lib/web_ui.dart
+++ b/lib/web_ui.dart
@@ -134,11 +134,16 @@ abstract class WebComponent 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);
+ createBinding(String name, model, String path) =>
+ host.createBinding(name, model, path);
void bind(String name, model, String path) => host.bind(name, model, path);
void unbind(String name) => host.unbind(name);
void unbindAll() => host.unbindAll();
+ get bindings => host.bindings;
+ BindingDelegate get bindingDelegate => host.bindingDelegate;
+ set bindingDelegate(BindingDelegate value) { host.bindingDelegate = value; }
/**
@@ -389,7 +394,8 @@ abstract class WebComponent implements Element {
CssRect get paddingEdge => host.paddingEdge;
CssRect get borderEdge => host.borderEdge;
CssRect get marginEdge => host.marginEdge;
-
+ Point get documentOffset => host.documentOffset;
+ Point offsetTo(Element parent) => host.offsetTo(parent);
Map<String, String> getNamespacedAttributes(String namespace) =>
host.getNamespacedAttributes(namespace);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698