| 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 // TODO(efortuna): Clean up these comments once we have dealt with the extra | 5 // TODO(efortuna): Clean up these comments once we have dealt with the extra |
| 6 // methods on these list-like classes. | 6 // methods on these list-like classes. |
| 7 ClientRectList implements sequence<ClientRect>; | 7 ClientRectList implements sequence<ClientRect>; |
| 8 CSSRuleList implements sequence<CSSRule>; | 8 CSSRuleList implements sequence<CSSRule>; |
| 9 CSSValueList implements sequence<CSSValue>; | 9 CSSValueList implements sequence<CSSValue>; |
| 10 DOMMimeTypeArray implements sequence<DOMMimeType>; // has namedItem field. | 10 DOMMimeTypeArray implements sequence<DOMMimeType>; // has namedItem field. |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 // Suppress the default since it has non-standard return type and add | 395 // Suppress the default since it has non-standard return type and add |
| 396 // overrides. | 396 // overrides. |
| 397 [Suppressed] boolean send(in DOMString data) raises(DOMException); | 397 [Suppressed] boolean send(in DOMString data) raises(DOMException); |
| 398 [Custom] void send(DOMString data) raises(DOMException); | 398 [Custom] void send(DOMString data) raises(DOMException); |
| 399 [Custom] void send(Blob data) raises(DOMException); | 399 [Custom] void send(Blob data) raises(DOMException); |
| 400 [Custom] void send(ArrayBuffer data) raises(DOMException); | 400 [Custom] void send(ArrayBuffer data) raises(DOMException); |
| 401 [Custom] void send(ArrayBufferView data) raises(DOMException); | 401 [Custom] void send(ArrayBufferView data) raises(DOMException); |
| 402 }; | 402 }; |
| 403 } | 403 } |
| 404 | 404 |
| 405 module core { | |
| 406 [supplemental, Callback] | |
| 407 interface RequestAnimationFrameCallback { | |
| 408 // Webkit implements this as returning bool, but standard is void. | |
| 409 [Suppressed] boolean handleEvent(in DOMTimeStamp time); | |
| 410 void handleEvent(in DOMTimeStamp time); | |
| 411 }; | |
| 412 } | |
| OLD | NEW |