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

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

Issue 10990061: webkitRequestAimationFrame->requestAnimationFrame with hand edit to (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 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;
« 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