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

Unified Diff: tools/dom/src/dart2js_CustomElementSupport.dart

Issue 24653006: Adding Element.created constructor (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
Index: tools/dom/src/dart2js_CustomElementSupport.dart
diff --git a/tools/dom/src/dart2js_CustomElementSupport.dart b/tools/dom/src/dart2js_CustomElementSupport.dart
index aa2c8f039af3153f2271d9c2139c50c96cb0507e..c708105d93c4ce476b12b59fed3cb4e860919ef0 100644
--- a/tools/dom/src/dart2js_CustomElementSupport.dart
+++ b/tools/dom/src/dart2js_CustomElementSupport.dart
@@ -5,7 +5,7 @@
part of dart.dom.html;
_callCreated(receiver) {
- return receiver.created();
+ return receiver.createdCallback();
}
_callEnteredView(receiver) {
@@ -117,3 +117,8 @@ void _registerCustomElement(context, document, String tag, Type type,
JS('void', '#.register(#, #)', document, tag, options);
}
+
+//// Called by Element.created to do validation & initialization.
+void _initializeCustomElement(Element e) {
+ // TODO(blois): Add validation that this is only in response to an upgrade.
+}

Powered by Google App Engine
This is Rietveld 408576698