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

Unified Diff: lib/html/idl/dart/dart.idl

Issue 11099033: Rename WebKit's WheelEvent.wheelDelta{X,Y} to W3C WheelEvent.delta{X,Y}. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | lib/html/scripts/htmlrenamer.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/idl/dart/dart.idl
diff --git a/lib/html/idl/dart/dart.idl b/lib/html/idl/dart/dart.idl
index ae9eaf42b55aa79ca27bfcaac0d5af4f4f900a1e..f9e1b9a6a4750a6851e3c21a610d125f87cc8bed 100644
--- a/lib/html/idl/dart/dart.idl
+++ b/lib/html/idl/dart/dart.idl
@@ -384,10 +384,19 @@ module websockets {
}
module core {
- [supplemental, Callback]
+ [Supplemental, Callback]
interface RequestAnimationFrameCallback {
// Webkit implements this as returning bool, but standard is void.
[Suppressed] boolean handleEvent(in DOMTimeStamp time);
[Custom] void handleEvent(in DOMTimeStamp time);
};
}
+
+module events {
+ [Supplemental]
+ interface WheelEvent {
+ [Suppressed] readonly attribute long wheelDelta;
+ [DartName=deltaX] readonly attribute long wheelDeltaX;
podivilov 2012/10/10 12:34:24 Could you please add an item to htmlrenamer._renam
Anton Muhin 2012/10/10 12:37:00 I believe we prefer dart.idl for overrides like th
blois 2012/10/10 16:02:03 These are longs here, but the intention of changin
+ [DartName=deltaY] readonly attribute long wheelDeltaY;
+ };
+}
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | lib/html/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698