Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // This file introduces / supplements and forces Dart declarations. | 1 // This file introduces / supplements and forces Dart declarations. |
| 2 | 2 |
| 3 [Supplemental, | 3 [Supplemental, |
| 4 Constructor] | 4 Constructor] |
| 5 interface AudioContext { | 5 interface AudioContext { |
| 6 // TODO(ager): Auto-generate this custom method when the info about retaining | 6 // TODO(ager): Auto-generate this custom method when the info about retaining |
| 7 // typed arrays is in the IDL. | 7 // typed arrays is in the IDL. |
| 8 [Custom] void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback succe ssCallback, AudioBufferCallback errorCallback); | 8 [Custom] void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback succe ssCallback, AudioBufferCallback errorCallback); |
| 9 }; | 9 }; |
| 10 | 10 |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 233 CustomConstructor, | 233 CustomConstructor, |
| 234 // Provide missing constructor signature. | 234 // Provide missing constructor signature. |
| 235 Constructor(MutationCallback callback)] | 235 Constructor(MutationCallback callback)] |
| 236 interface MutationObserver { | 236 interface MutationObserver { |
| 237 }; | 237 }; |
| 238 | 238 |
| 239 [Supplemental, | 239 [Supplemental, |
| 240 CustomConstructor, | 240 CustomConstructor, |
| 241 // Provide missing constructor signature. | 241 // Provide missing constructor signature. |
| 242 Constructor(optional HTMLFormElement form)] | 242 Constructor(optional HTMLFormElement form)] |
| 243 interface DOMFormData { | 243 interface FormData { |
| 244 [Suppressed] void append(DOMString name, DOMString value, DOMString filename); | 244 [Suppressed] void append(DOMString name, DOMString value, DOMString filename); |
| 245 [Custom] void append(DOMString name, DOMString value); | 245 [Custom] void append(DOMString name, DOMString value); |
| 246 [Custom] void append(DOMString name, Blob value, optional DOMString filename); | 246 [Custom] void append(DOMString name, Blob value, optional DOMString filename); |
| 247 }; | 247 }; |
| 248 | 248 |
| 249 [Supplemental] | 249 [Supplemental] |
| 250 interface SQLResultSetRowList { | 250 interface SQLResultSetRowList { |
| 251 // Change the return type to Dictionary so that rows are exposed in the Dart | 251 // Change the return type to Dictionary so that rows are exposed in the Dart |
| 252 // API as a Maps, with the appropriate conversion in JavaScript. | 252 // API as a Maps, with the appropriate conversion in JavaScript. |
| 253 [Suppressed] any item(unsigned long index); | 253 [Suppressed] any item(unsigned long index); |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 270 }; | 270 }; |
| 271 | 271 |
| 272 [Supplemental] | 272 [Supplemental] |
| 273 interface XMLHttpRequest { | 273 interface XMLHttpRequest { |
| 274 [Custom] void send(); | 274 [Custom] void send(); |
| 275 [Custom] void send(ArrayBuffer data); // FIXME: this should be eventually dep recated. | 275 [Custom] void send(ArrayBuffer data); // FIXME: this should be eventually dep recated. |
| 276 [Custom] void send(ArrayBufferView data); | 276 [Custom] void send(ArrayBufferView data); |
| 277 [Custom] void send(Blob data); | 277 [Custom] void send(Blob data); |
| 278 [Custom] void send(Document data); | 278 [Custom] void send(Document data); |
| 279 [Custom] void send([StrictTypeChecking] DOMString data); | 279 [Custom] void send([StrictTypeChecking] DOMString data); |
| 280 [Custom] void send(DOMFormData data); | 280 [Custom] void send(FormData data); |
| 281 }; | 281 }; |
| 282 | 282 |
| 283 | 283 |
| 284 [Suppressed] | 284 [Suppressed] |
| 285 interface AbstractView {}; | 285 interface AbstractView {}; |
| 286 | 286 |
| 287 | 287 |
| 288 [Suppressed] | 288 [Suppressed] |
| 289 interface InjectedScriptHost {}; | 289 interface InjectedScriptHost {}; |
| 290 | 290 |
| 291 | 291 |
| 292 [Suppressed] | 292 [Suppressed] |
| 293 interface InspectorFrontendHost {}; | 293 interface InspectorFrontendHost {}; |
| 294 | 294 |
| 295 | 295 |
| 296 [Suppressed] | 296 [Suppressed] |
| 297 interface JavaScriptCallFrame {}; | 297 interface JavaScriptCallFrame {}; |
| 298 | 298 |
| 299 | 299 |
| 300 [Suppressed] | 300 [Supplemental] |
| 301 interface Entity {}; | 301 interface Location { |
|
Anton Muhin
2013/06/03 09:02:19
we probably should file a bug to remove those over
vsm
2013/06/03 14:59:50
Done - 11043
On 2013/06/03 09:02:19, Anton Muhin
| |
| 302 [CustomSetter] attribute DOMString href; | |
| 303 | |
| 304 [Custom] void assign(optional DOMString url); | |
| 305 [Custom] void replace([Default=Undefined] optional DOMString url); | |
| 306 [Custom] void reload(); | |
| 307 | |
| 308 // URI decomposition attributes | |
| 309 [CustomSetter] attribute DOMString protocol; | |
| 310 [CustomSetter] attribute DOMString host; | |
| 311 [CustomSetter] attribute DOMString hostname; | |
| 312 [CustomSetter] attribute DOMString port; | |
| 313 [CustomSetter] attribute DOMString pathname; | |
| 314 [CustomSetter] attribute DOMString search; | |
| 315 [CustomSetter] attribute DOMString hash; | |
| 316 }; | |
| OLD | NEW |