| 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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 // Suppress the default since it has non-standard return type and add | 394 // Suppress the default since it has non-standard return type and add |
| 395 // overrides. | 395 // overrides. |
| 396 [Suppressed] boolean send(in DOMString data) raises(DOMException); | 396 [Suppressed] boolean send(in DOMString data) raises(DOMException); |
| 397 [Custom] void send(DOMString data) raises(DOMException); | 397 [Custom] void send(DOMString data) raises(DOMException); |
| 398 [Custom] void send(Blob data) raises(DOMException); | 398 [Custom] void send(Blob data) raises(DOMException); |
| 399 [Custom] void send(ArrayBuffer data) raises(DOMException); | 399 [Custom] void send(ArrayBuffer data) raises(DOMException); |
| 400 [Custom] void send(ArrayBufferView data) raises(DOMException); | 400 [Custom] void send(ArrayBufferView data) raises(DOMException); |
| 401 }; | 401 }; |
| 402 } | 402 } |
| 403 | 403 |
| 404 module core { |
| 405 [supplemental, Callback] |
| 406 interface RequestAnimationFrameCallback { |
| 407 // Webkit implements this as returning bool, but standard is void. |
| 408 [Suppressed] boolean handleEvent(in DOMTimeStamp time); |
| 409 [Custom] void handleEvent(in DOMTimeStamp time); |
| 410 }; |
| 411 } |
| OLD | NEW |