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

Unified Diff: pkg/custom_element/lib/custom_element.dart

Issue 266793004: [custom_element] fix warning caused by new dart:html methods (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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: pkg/custom_element/lib/custom_element.dart
diff --git a/pkg/custom_element/lib/custom_element.dart b/pkg/custom_element/lib/custom_element.dart
index fbf80ebff6b276b68431e9ce3d58dcff79c80d65..4fc679f0c2425d91dd8acbf7712d9baa6b19bd7e 100644
--- a/pkg/custom_element/lib/custom_element.dart
+++ b/pkg/custom_element/lib/custom_element.dart
@@ -98,11 +98,15 @@ class CustomElement implements Element {
void inserted() {}
@deprecated
void enteredView() {}
+ @deprecated
+ void attached() {}
/** Invoked when this component is removed from the DOM tree. */
void removed() {}
@deprecated
void leftView() {}
+ @deprecated
+ void detached() {}
/** Invoked when any attribute of the component is modified. */
void attributeChanged(String name, String oldValue, String newValue) =>
« 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