Chromium Code Reviews| 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; |
| + }; |
| +} |