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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 11473013: Adding deprecated flag to deprecated members. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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 | sdk/lib/html/dartium/html_dartium.dart » ('j') | sdk/lib/html/html_common/html_common.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index 5bbc28b7b4868df6813dddab321a72629d28b600..1821db949af2208377e4ca3ace2d111631a85a1f 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -7174,11 +7174,14 @@ abstract class Element extends Node implements ElementTraversal native "*Element
/**
* Deprecated, use innerHtml instead.
*/
+ @deprecated
blois 2012/12/07 00:06:15 Note- not using @Deprecated('message') because dar
String get innerHTML => this.innerHtml;
+ @deprecated
void set innerHTML(String value) {
this.innerHtml = value;
}
+ @deprecated
void set elements(Collection<Element> value) {
this.children = value;
}
@@ -7186,6 +7189,7 @@ abstract class Element extends Node implements ElementTraversal native "*Element
/**
* Deprecated, use [children] instead.
*/
+ @deprecated
List<Element> get elements => this.children;
/**
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | sdk/lib/html/html_common/html_common.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698