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

Unified Diff: client/testing/unittest/unittest_vm.dart

Issue 8992007: Make the repeating argument to timers optional. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed comments. Created 9 years 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 | runtime/bin/chunked_stream.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/testing/unittest/unittest_vm.dart
diff --git a/client/testing/unittest/unittest_vm.dart b/client/testing/unittest/unittest_vm.dart
index 7e6a9ae1fb3bbd72a88f9215abc737d1275495b6..55fbd440efd6676be69e769169a70079e418aee1 100644
--- a/client/testing/unittest/unittest_vm.dart
+++ b/client/testing/unittest/unittest_vm.dart
@@ -16,7 +16,7 @@ _platformInitialize() {
_platformDefer(void callback()) {
new Timer((timer) {
callback();
- }, 0, false);
+ }, 0);
}
_platformStartTests() {
« no previous file with comments | « no previous file | runtime/bin/chunked_stream.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698