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

Unified Diff: lib/html/dart2js/html_dart2js.dart

Issue 10986013: Revert r12819 to look at IE fix offline. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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:
Download patch
« no previous file with comments | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dart2js/html_dart2js.dart
===================================================================
--- lib/html/dart2js/html_dart2js.dart (revision 12822)
+++ lib/html/dart2js/html_dart2js.dart (working copy)
@@ -37643,6 +37643,12 @@
*/
void requestLayoutFrame(TimeoutHandler callback);
+
+ /** @domName DOMWindow.webkitRequestAnimationFrame */
+ int requestAnimationFrame(RequestAnimationFrameCallback callback);
+
+ void cancelAnimationFrame(int id);
+
IDBFactory get indexedDB;
/**
@@ -37921,10 +37927,10 @@
void stop();
/** @domName DOMWindow.webkitCancelAnimationFrame */
- void cancelAnimationFrame(int id);
+ void webkitCancelAnimationFrame(int id);
/** @domName DOMWindow.webkitCancelRequestAnimationFrame */
- void cancelRequestAnimationFrame(int id);
+ void webkitCancelRequestAnimationFrame(int id);
/** @domName DOMWindow.webkitConvertPointFromNodeToPage */
Point webkitConvertPointFromNodeToPage(Node node, Point p);
@@ -37936,7 +37942,7 @@
void webkitPostMessage(/*SerializedScriptValue*/ message, String targetOrigin, [List transferList]);
/** @domName DOMWindow.webkitRequestAnimationFrame */
- int requestAnimationFrame(RequestAnimationFrameCallback callback);
+ int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback);
/** @domName DOMWindow.webkitRequestFileSystem */
void webkitRequestFileSystem(int type, int size, FileSystemCallback successCallback, [ErrorCallback errorCallback]);
@@ -38189,9 +38195,10 @@
}
int _requestAnimationFrame(RequestAnimationFrameCallback callback)
- native 'webkitRequestAnimationFrame';
+ native 'requestAnimationFrame';
- void _cancelAnimationFrame(int id) native 'webkitCancelAnimationFrame';
+ void _cancelAnimationFrame(int id)
+ native 'cancelAnimationFrame';
_ensureRequestAnimationFrame() native '''
if (this.requestAnimationFrame && this.cancelAnimationFrame) return;
@@ -38403,14 +38410,18 @@
void stop() native;
- void cancelRequestAnimationFrame(int id) native "webkitCancelRequestAnimationFrame";
+ void webkitCancelAnimationFrame(int id) native;
+ void webkitCancelRequestAnimationFrame(int id) native;
+
_PointImpl webkitConvertPointFromNodeToPage(_NodeImpl node, _PointImpl p) native;
_PointImpl webkitConvertPointFromPageToNode(_NodeImpl node, _PointImpl p) native;
void webkitPostMessage(message, String targetOrigin, [List transferList]) native;
+ int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback) native;
+
void webkitRequestFileSystem(int type, int size, FileSystemCallback successCallback, [ErrorCallback errorCallback]) native;
void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallback, ErrorCallback errorCallback]) native;
« no previous file with comments | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698