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

Unified Diff: sdk/lib/isolate/timer.dart

Issue 11783009: Big merge from experimental to bleeding edge. (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 | « sdk/lib/isolate/mangler.dart ('k') | sdk/lib/json/json.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/isolate/timer.dart
diff --git a/sdk/lib/isolate/timer.dart b/sdk/lib/isolate/timer.dart
deleted file mode 100644
index 40d4cd91ec0f4a183df2879a81d8b4202fe179ad..0000000000000000000000000000000000000000
--- a/sdk/lib/isolate/timer.dart
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-part of dart.isolate;
-
-abstract class Timer {
- /**
- * Creates a new timer. The [callback] callback is invoked after
- * [milliseconds] milliseconds.
- */
- external factory Timer(int milliseconds, void callback(Timer timer));
-
- /**
- * Creates a new repeating timer. The [callback] is invoked every
- * [milliseconds] millisecond until cancelled.
- */
- external factory Timer.repeating(int milliseconds,
- void callback(Timer timer));
-
- /**
- * Cancels the timer.
- */
- void cancel();
-}
« no previous file with comments | « sdk/lib/isolate/mangler.dart ('k') | sdk/lib/json/json.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698