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

Unified Diff: tools/dom/templates/html/impl/impl_Node.darttemplate

Issue 18182010: Make html metadata follow the spec. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed DocsEditable, Experimental, Unstable Created 7 years, 6 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: tools/dom/templates/html/impl/impl_Node.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_Node.darttemplate b/tools/dom/templates/html/impl/impl_Node.darttemplate
index e6036ae3bb295f938639c781cac2e5d49a938cbd..543cf1b8a04d9f662e496818278ad8744af8ef77 100644
--- a/tools/dom/templates/html/impl/impl_Node.darttemplate
+++ b/tools/dom/templates/html/impl/impl_Node.darttemplate
@@ -275,25 +275,25 @@ $(ANNOTATIONS)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
* Binds the attribute [name] to the [path] of the [model].
* Path is a String of accessors such as `foo.bar.baz`.
*/
- @Experimental
+ @Experimental()
void bind(String name, model, String path) {
TemplateElement.mdvPackage(this).bind(name, model, path);
}
/** Unbinds the attribute [name]. */
- @Experimental
+ @Experimental()
void unbind(String name) {
TemplateElement.mdvPackage(this).unbind(name);
}
/** Unbinds all bound attributes. */
- @Experimental
+ @Experimental()
void unbindAll() {
TemplateElement.mdvPackage(this).unbindAll();
}
/** Gets the template instance that instantiated this node, if any. */
- @Experimental
+ @Experimental()
TemplateInstance get templateInstance =>
TemplateElement.mdvPackage(this).templateInstance;
« no previous file with comments | « tools/dom/templates/html/impl/impl_Navigator.darttemplate ('k') | tools/dom/templates/html/impl/impl_SVGColor.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698