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

Unified Diff: pkg/polymer/test/register_test.dart

Issue 307793002: update polymer, nodebind, and templatebinding (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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: pkg/polymer/test/register_test.dart
diff --git a/pkg/polymer/test/register_test.dart b/pkg/polymer/test/register_test.dart
index d2194d57855630d4caaab580ae497a66b1e12140..0399853b091269ceafec479ac18bde968412a81a 100644
--- a/pkg/polymer/test/register_test.dart
+++ b/pkg/polymer/test/register_test.dart
@@ -19,7 +19,9 @@ class XHtml2Element extends XHtmlElement {
@CustomTag('x-div')
class XDivElement extends DivElement with Polymer, Observable {
- XDivElement.created() : super.created();
+ XDivElement.created() : super.created() {
+ polymerCreated();
+ }
}
@CustomTag('x-div-two')
@@ -36,7 +38,9 @@ class XPolymerElement extends PolymerElement {
/// Dart-specific test:
/// This element is registered from code without an associated polymer-element.
class XButtonElement extends ButtonElement with Polymer, Observable {
- XButtonElement.created() : super.created();
+ XButtonElement.created() : super.created() {
+ polymerCreated();
+ }
}
« no previous file with comments | « pkg/polymer/test/publish_inherited_properties_test.dart ('k') | pkg/polymer/test/template_distribute_dynamic_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698