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

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Issue 13153003: Rebuild libs after the recent change. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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:
Download patch
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index 7889de57d9c4393fc9fd1fc14d062da9ec28f691..d2c479cffe47baf96cc9cbc0106d1fe82e40dfad 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -35076,7 +35076,9 @@ class _PureIsolateTimer implements Timer {
void cancel() {
_cancel();
- _HELPER_ISOLATE_PORT.send([_CANCEL_TIMER], _sendPort);
+ _HELPER_ISOLATE_PORT.then((port) {
+ port.send([_CANCEL_TIMER], _sendPort);
+ });
}
void _cancel() {
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698