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

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

Issue 24168006: Fixing issues from lifecycle events CL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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 | tests/html/html.status » ('j') | 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 d3bf02f1d27104b8e5c4de0a35aad79934aa4d8f..98bef7499846167d315e097a6bc151d9fc883f6e 100644
--- a/pkg/custom_element/lib/custom_element.dart
+++ b/pkg/custom_element/lib/custom_element.dart
@@ -174,9 +174,13 @@ class CustomElement implements Element {
/** Invoked when this component gets inserted in the DOM tree. */
void inserted() {}
+ @deprecated
+ void enteredView() {}
/** Invoked when this component is removed from the DOM tree. */
void removed() {}
+ @deprecated
+ void leftView() {}
// TODO(jmesserly): how do we implement this efficiently?
// See https://github.com/dart-lang/web-ui/issues/37
« no previous file with comments | « no previous file | tests/html/html.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698