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

Unified Diff: dart/lib/compiler/implementation/lib/isolate_patch.dart

Issue 10919098: Run dart2js tests unmodified in browser. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Use messages Created 8 years, 3 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: dart/lib/compiler/implementation/lib/isolate_patch.dart
diff --git a/dart/lib/compiler/implementation/lib/isolate_patch.dart b/dart/lib/compiler/implementation/lib/isolate_patch.dart
index d6272e73bf2d3f0ed47a041a1687075d800b9832..02c237a35ba6d6a7a73933da404de5789b4b70c4 100644
--- a/dart/lib/compiler/implementation/lib/isolate_patch.dart
+++ b/dart/lib/compiler/implementation/lib/isolate_patch.dart
@@ -1235,6 +1235,8 @@ typedef void _TimeoutHandler();
class _Window native "@*DOMWindow" {
int setTimeout(_TimeoutHandler handler, int timeout) native;
int setInterval(_TimeoutHandler handler, int timeout) native;
+ void clearTimeout(int _handle) native;
kasperl 2012/09/10 07:37:03 Why does the parameter name start with an undersco
ahe 2012/09/10 08:31:14 Cut-and-paste error. Will fix.
ahe 2012/09/10 10:35:59 Done.
+ void clearInterval(int _handle) native;
}
_Window get _window =>

Powered by Google App Engine
This is Rietveld 408576698