Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 | 1 |
| 2 // This file introduces / supplements and forces Dart declarations. | 2 // This file introduces / supplements and forces Dart declarations. |
| 3 | 3 |
| 4 module default { | 4 module default { |
| 5 ClientRectList implements sequence<ClientRect>; | 5 ClientRectList implements sequence<ClientRect>; |
| 6 CSSRuleList implements sequence<CSSRule>; | 6 CSSRuleList implements sequence<CSSRule>; |
| 7 CSSValueList implements sequence<CSSValue>; | 7 CSSValueList implements sequence<CSSValue>; |
| 8 DOMMimeTypeArray implements sequence<DOMMimeType>; | 8 DOMMimeTypeArray implements sequence<DOMMimeType>; |
| 9 DOMPluginArray implements sequence<DOMPlugin>; | 9 DOMPluginArray implements sequence<DOMPlugin>; |
| 10 EntryArray implements sequence<Entry>; | 10 EntryArray implements sequence<Entry>; |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 377 // overrides. | 377 // overrides. |
| 378 [Suppressed] boolean send(in DOMString data) raises(DOMException); | 378 [Suppressed] boolean send(in DOMString data) raises(DOMException); |
| 379 [Custom] void send(DOMString data) raises(DOMException); | 379 [Custom] void send(DOMString data) raises(DOMException); |
| 380 [Custom] void send(Blob data) raises(DOMException); | 380 [Custom] void send(Blob data) raises(DOMException); |
| 381 [Custom] void send(ArrayBuffer data) raises(DOMException); | 381 [Custom] void send(ArrayBuffer data) raises(DOMException); |
| 382 [Custom] void send(ArrayBufferView data) raises(DOMException); | 382 [Custom] void send(ArrayBufferView data) raises(DOMException); |
| 383 }; | 383 }; |
| 384 } | 384 } |
| 385 | 385 |
| 386 module core { | 386 module core { |
| 387 [supplemental, Callback] | 387 [Supplemental, Callback] |
| 388 interface RequestAnimationFrameCallback { | 388 interface RequestAnimationFrameCallback { |
| 389 // Webkit implements this as returning bool, but standard is void. | 389 // Webkit implements this as returning bool, but standard is void. |
| 390 [Suppressed] boolean handleEvent(in DOMTimeStamp time); | 390 [Suppressed] boolean handleEvent(in DOMTimeStamp time); |
| 391 [Custom] void handleEvent(in DOMTimeStamp time); | 391 [Custom] void handleEvent(in DOMTimeStamp time); |
| 392 }; | 392 }; |
| 393 } | 393 } |
| 394 | |
| 395 module events { | |
| 396 [Supplemental] | |
| 397 interface WheelEvent { | |
| 398 [Suppressed] readonly attribute long wheelDelta; | |
| 399 [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
| |
| 400 [DartName=deltaY] readonly attribute long wheelDeltaY; | |
| 401 }; | |
| 402 } | |
| OLD | NEW |