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

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

Issue 10965044: Remove Webkit prefix for RequestAnimationFrame. (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') | lib/html/scripts/htmlrenamer.py » ('J')
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 12738)
+++ lib/html/dart2js/html_dart2js.dart (working copy)
@@ -37927,10 +37927,10 @@
void stop();
/** @domName DOMWindow.webkitCancelAnimationFrame */
- void webkitCancelAnimationFrame(int id);
+ void cancelAnimationFrame(int id);
/** @domName DOMWindow.webkitCancelRequestAnimationFrame */
- void webkitCancelRequestAnimationFrame(int id);
+ void cancelRequestAnimationFrame(int id);
/** @domName DOMWindow.webkitConvertPointFromNodeToPage */
Point webkitConvertPointFromNodeToPage(Node node, Point p);
@@ -37942,7 +37942,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]);
@@ -38410,9 +38410,9 @@
void stop() native;
- void webkitCancelAnimationFrame(int id) native;
+ void cancelAnimationFrame(int id) native "webkitCancelAnimationFrame";
- void webkitCancelRequestAnimationFrame(int id) native;
+ void cancelRequestAnimationFrame(int id) native "webkitCancelRequestAnimationFrame";
_PointImpl webkitConvertPointFromNodeToPage(_NodeImpl node, _PointImpl p) native;
@@ -38420,7 +38420,7 @@
void webkitPostMessage(message, String targetOrigin, [List transferList]) native;
- int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback) native;
+ int requestAnimationFrame(RequestAnimationFrameCallback callback) native "webkitRequestAnimationFrame";
void webkitRequestFileSystem(int type, int size, FileSystemCallback successCallback, [ErrorCallback errorCallback]) native;
« no previous file with comments | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | lib/html/scripts/htmlrenamer.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698