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

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

Issue 12086066: Removing dart:html APIs which were deprecated in M2. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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_Element.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_Element.darttemplate b/tools/dom/templates/html/impl/impl_Element.darttemplate
index 752c93f479f557f2798e39357ca98b4c2736471e..4d5c1e43cfe6375fa6b0b74d03d4c2280ad5921b 100644
--- a/tools/dom/templates/html/impl/impl_Element.darttemplate
+++ b/tools/dom/templates/html/impl/impl_Element.darttemplate
@@ -567,27 +567,6 @@ $(ANNOTATIONS)abstract class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
}
/**
- * Deprecated, use innerHtml instead.
- */
- @deprecated
- String get innerHTML => this.innerHtml;
- @deprecated
- void set innerHTML(String value) {
- this.innerHtml = value;
- }
-
- @deprecated
- void set elements(Collection<Element> value) {
- this.children = value;
- }
-
- /**
- * Deprecated, use [children] instead.
- */
- @deprecated
- List<Element> get elements => this.children;
-
- /**
* List of the direct children of this element.
*
* This collection can be used to add and remove elements from the document.

Powered by Google App Engine
This is Rietveld 408576698