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

Unified Diff: Source/bindings/dart/DartCustomElement.cpp

Issue 23494005: Dartium changes to change Element.onCreated to Element.created. (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
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
« 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: Source/bindings/dart/DartCustomElement.cpp
diff --git a/Source/bindings/dart/DartCustomElement.cpp b/Source/bindings/dart/DartCustomElement.cpp
index 1bf5de481e993b5f43d2fcd34fe9b5184a10bdb8..290a2c677b3f4acb3dc3de5ac85c72bfa9fd7764 100644
--- a/Source/bindings/dart/DartCustomElement.cpp
+++ b/Source/bindings/dart/DartCustomElement.cpp
@@ -97,7 +97,7 @@ Dart_Handle DartCustomElement::toDart(Element* impl, CreateWrapperFunction creat
ASSERT(!Dart_IsError(result));
Dart_Handle wrapper = DartDOMWrapper::associateWrapper<DartHTMLElement>(element, newInstance);
- Dart_Invoke(wrapper, Dart_NewStringFromCString("onCreated"), 0, 0);
+ Dart_Invoke(wrapper, Dart_NewStringFromCString("created"), 0, 0);
return wrapper;
}
« 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