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

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: Address review comments 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..f8d1e96fd6dd74c4f19654e10dba39b1aefb7318 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;
+ void clearInterval(int handle) native;
}
_Window get _window =>

Powered by Google App Engine
This is Rietveld 408576698