Chromium Code Reviews| 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 => |