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

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

Issue 12047054: Deprecating old DOM event APIs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 | « tools/dom/scripts/htmlrenamer.py ('k') | tools/dom/templates/html/dart2js/impl_ElementEvents.darttemplate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/src/Isolates.dart
diff --git a/tools/dom/src/Isolates.dart b/tools/dom/src/Isolates.dart
index 116ca4f8be821f98992a15c0894c5aa2ff7bf7e6..a0ce6213812b2b188447f5a9ed0ed38fb1424bdb 100644
--- a/tools/dom/src/Isolates.dart
+++ b/tools/dom/src/Isolates.dart
@@ -218,7 +218,7 @@ get _isolateId => ReceivePortSync._isolateId;
void _dispatchEvent(String receiver, var message) {
var event = new CustomEvent(receiver, false, false, json.stringify(message));
- window.$dom_dispatchEvent(event);
+ window.dispatchEvent(event);
}
String _getPortSyncEventData(CustomEvent event) => event.detail;
« no previous file with comments | « tools/dom/scripts/htmlrenamer.py ('k') | tools/dom/templates/html/dart2js/impl_ElementEvents.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698