Index: sdk/lib/html/templates/html/dart2js/impl_LocalWindow.darttemplate |
diff --git a/sdk/lib/html/templates/html/dart2js/impl_LocalWindow.darttemplate b/sdk/lib/html/templates/html/dart2js/impl_LocalWindow.darttemplate |
index 5542bf872f0b72cf0ba000b9694870d92e4c0010..ec8087df4e3cdae6f6397351d4176ef68536f043 100644 |
--- a/sdk/lib/html/templates/html/dart2js/impl_LocalWindow.darttemplate |
+++ b/sdk/lib/html/templates/html/dart2js/impl_LocalWindow.darttemplate |
@@ -57,7 +57,8 @@ class $CLASSNAME$EXTENDS$IMPLEMENTS native "@*DOMWindow" { |
} |
// Prevent compiled from thinking 'location' property is available for a Dart |
// member. |
- _protect_location() native 'location'; |
+ @JSName('location') |
+ _protect_location() native; |
static _isDartLocation(thing) { |
// On Firefox the code that implements 'is Location' fails to find the patch |
@@ -89,11 +90,11 @@ class $CLASSNAME$EXTENDS$IMPLEMENTS native "@*DOMWindow" { |
_cancelAnimationFrame(id); |
} |
- int _requestAnimationFrame(RequestAnimationFrameCallback callback) |
- native 'requestAnimationFrame'; |
+ @JSName('requestAnimationFrame') |
+ int _requestAnimationFrame(RequestAnimationFrameCallback callback) native; |
- void _cancelAnimationFrame(int id) |
- native 'cancelAnimationFrame'; |
+ @JSName('cancelAnimationFrame') |
+ void _cancelAnimationFrame(int id) native; |
_ensureRequestAnimationFrame() { |
if (JS('bool', |