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

Unified Diff: tests/html/custom/created_callback_test.dart

Issue 23451006: Changing onCreated callback to created. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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: tests/html/custom/created_callback_test.dart
diff --git a/tests/html/custom/created_callback_test.dart b/tests/html/custom/created_callback_test.dart
index 2f3cd51872cff72e7be6ffd609deecd1c699b95c..2c34a37555f6bc0fcf009938dd23e3c47446790e 100644
--- a/tests/html/custom/created_callback_test.dart
+++ b/tests/html/custom/created_callback_test.dart
@@ -13,7 +13,7 @@ class A extends HtmlElement {
static int createdInvocations = 0;
- void onCreated() {
+ void created() {
createdInvocations++;
}
}
@@ -30,7 +30,7 @@ class C extends HtmlElement {
static int createdInvocations = 0;
static var div;
- void onCreated() {
+ void created() {
createdInvocations++;
if (this.id != 'u') {
« no previous file with comments | « tests/html/custom/constructor_calls_created_synchronously_test.dart ('k') | tests/html/custom_elements_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698