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

Unified Diff: lib/html/src/Isolates.dart

Issue 11028018: Missed a change in the rename from initCustomEvent -> $dom_initCustomEvent. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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 | « lib/html/scripts/htmlrenamer.py ('k') | lib/html/src/shared_FactoryProviders.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/src/Isolates.dart
===================================================================
--- lib/html/src/Isolates.dart (revision 13129)
+++ lib/html/src/Isolates.dart (working copy)
@@ -194,7 +194,7 @@
void _dispatchEvent(String receiver, var message) {
var event = document.$dom_createEvent('CustomEvent');
- event.initCustomEvent(receiver, false, false, JSON.stringify(message));
+ event.$dom_initCustomEvent(receiver, false, false, JSON.stringify(message));
blois 2012/10/02 19:59:01 Can this not use the CustomEvent constructor?
Emily Fortuna 2012/10/02 20:06:40 Good point. Fixed!
window.$dom_dispatchEvent(event);
}
« no previous file with comments | « lib/html/scripts/htmlrenamer.py ('k') | lib/html/src/shared_FactoryProviders.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698