| Index: lib/html/dart2js/html_dart2js.dart
|
| ===================================================================
|
| --- lib/html/dart2js/html_dart2js.dart (revision 12920)
|
| +++ lib/html/dart2js/html_dart2js.dart (working copy)
|
| @@ -37726,12 +37726,6 @@
|
| */
|
| void requestLayoutFrame(TimeoutHandler callback);
|
|
|
| -
|
| - /** @domName DOMWindow.webkitRequestAnimationFrame */
|
| - int requestAnimationFrame(RequestAnimationFrameCallback callback);
|
| -
|
| - void cancelAnimationFrame(int id);
|
| -
|
| /**
|
| * Creates a new object URL for the specified object. The URL will be
|
| * available until revokeObjectUrl is called.
|
| @@ -38008,11 +38002,8 @@
|
| void stop();
|
|
|
| /** @domName DOMWindow.webkitCancelAnimationFrame */
|
| - void webkitCancelAnimationFrame(int id);
|
| + void cancelAnimationFrame(int id);
|
|
|
| - /** @domName DOMWindow.webkitCancelRequestAnimationFrame */
|
| - void webkitCancelRequestAnimationFrame(int id);
|
| -
|
| /** @domName DOMWindow.webkitConvertPointFromNodeToPage */
|
| Point webkitConvertPointFromNodeToPage(Node node, Point p);
|
|
|
| @@ -38023,7 +38014,7 @@
|
| void webkitPostMessage(/*SerializedScriptValue*/ message, String targetOrigin, [List transferList]);
|
|
|
| /** @domName DOMWindow.webkitRequestAnimationFrame */
|
| - int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback);
|
| + int requestAnimationFrame(RequestAnimationFrameCallback callback);
|
|
|
| /** @domName DOMWindow.webkitRequestFileSystem */
|
| void webkitRequestFileSystem(int type, int size, FileSystemCallback successCallback, [ErrorCallback errorCallback]);
|
| @@ -38491,18 +38482,12 @@
|
|
|
| void stop() native;
|
|
|
| - 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;
|
|
|