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

Unified Diff: samples/isolate_html/isolate_sample.dart

Issue 12218131: Combine window.setTimeout/setInterval with Timer and Timer.repeating. Also (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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: samples/isolate_html/isolate_sample.dart
diff --git a/samples/isolate_html/isolate_sample.dart b/samples/isolate_html/isolate_sample.dart
index f3a9079ecf11a2dc44f7a8baa21bd35d42d19f8a..cac96286a829425607c6c223d90d7f66d6d9464f 100644
--- a/samples/isolate_html/isolate_sample.dart
+++ b/samples/isolate_html/isolate_sample.dart
@@ -75,11 +75,9 @@ void isolateMain() {
if (div.query('input.replyCheckbox').checked) {
InputElement element = div.query('.delayTextbox');
int millis = int.parse(element.value);
- // TODO(justinfagnani): use Timer when it works in isolates in dart2js
- // see: http://dartbug.com/4997
- window.setTimeout(() {
+ new Timer(new Duration(millis), () {
floitsch 2013/02/13 10:03:07 new Duration(milliseconds: millis)
replyTo.send('this is a reply from isolate "${isolateName}"', null);
- }, millis);
+ });
}
}

Powered by Google App Engine
This is Rietveld 408576698