| 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 |
| 11 [Supplemental] | 11 [Supplemental] |
| 12 interface WaveShaperNode { | 12 interface WaveShaperNode { |
| 13 // TODO(ager): Auto-generate this custom method when the info about retaining | 13 // TODO(ager): Auto-generate this custom method when the info about retaining |
| 14 // typed arrays is in the IDL. | 14 // typed arrays is in the IDL. |
| 15 [CustomSetter] attribute Float32Array curve; | 15 [Custom=Setter] attribute Float32Array curve; |
| 16 }; | 16 }; |
| 17 | 17 |
| 18 [Supplemental] | 18 [Supplemental] |
| 19 interface AudioParam { | 19 interface AudioParam { |
| 20 // TODO(ager): Auto-generate this custom method when the info about retaining | 20 // TODO(ager): Auto-generate this custom method when the info about retaining |
| 21 // typed arrays is in the IDL. | 21 // typed arrays is in the IDL. |
| 22 [Custom] void setValueCurveAtTime(Float32Array values, double time, double dur
ation); | 22 [Custom] void setValueCurveAtTime(Float32Array values, double time, double dur
ation); |
| 23 }; | 23 }; |
| 24 | 24 |
| 25 [Supplemental] | 25 [Supplemental] |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 [Suppressed] | 321 [Suppressed] |
| 322 interface InspectorFrontendHost {}; | 322 interface InspectorFrontendHost {}; |
| 323 | 323 |
| 324 | 324 |
| 325 [Suppressed] | 325 [Suppressed] |
| 326 interface JavaScriptCallFrame {}; | 326 interface JavaScriptCallFrame {}; |
| 327 | 327 |
| 328 | 328 |
| 329 [Supplemental] | 329 [Supplemental] |
| 330 interface Location { | 330 interface Location { |
| 331 [CustomSetter] attribute DOMString href; | 331 [Custom=Setter] attribute DOMString href; |
| 332 | 332 |
| 333 [Custom] void assign(optional DOMString url); | 333 [Custom] void assign(optional DOMString url); |
| 334 [Custom] void replace([Default=Undefined] optional DOMString url); | 334 [Custom] void replace([Default=Undefined] optional DOMString url); |
| 335 [Custom] void reload(); | 335 [Custom] void reload(); |
| 336 | 336 |
| 337 // URI decomposition attributes | 337 // URI decomposition attributes |
| 338 [CustomSetter] attribute DOMString protocol; | 338 [Custom=Setter] attribute DOMString protocol; |
| 339 [CustomSetter] attribute DOMString host; | 339 [Custom=Setter] attribute DOMString host; |
| 340 [CustomSetter] attribute DOMString hostname; | 340 [Custom=Setter] attribute DOMString hostname; |
| 341 [CustomSetter] attribute DOMString port; | 341 [Custom=Setter] attribute DOMString port; |
| 342 [CustomSetter] attribute DOMString pathname; | 342 [Custom=Setter] attribute DOMString pathname; |
| 343 [CustomSetter] attribute DOMString search; | 343 [Custom=Setter] attribute DOMString search; |
| 344 [CustomSetter] attribute DOMString hash; | 344 [Custom=Setter] attribute DOMString hash; |
| 345 }; | 345 }; |
| 346 | 346 |
| 347 // TODO(jacobr): reenable these new Blink features. | 347 // TODO(jacobr): reenable these new Blink features. |
| 348 [Suppressed] | 348 [Suppressed] |
| 349 interface ImageBitmapFactories {}; | 349 interface ImageBitmapFactories {}; |
| 350 | 350 |
| 351 // See https://chromiumcodereview.appspot.com/15901002 for the V8 implementation
of | 351 // See https://chromiumcodereview.appspot.com/15901002 for the V8 implementation
of |
| 352 // TextEncoder/TextDecoder | 352 // TextEncoder/TextDecoder |
| 353 [Suppressed] | 353 [Suppressed] |
| 354 interface TextEncoder {}; | 354 interface TextEncoder {}; |
| 355 | 355 |
| 356 [Suppressed] | 356 [Suppressed] |
| 357 interface TextDecoder {}; | 357 interface TextDecoder {}; |
| 358 | 358 |
| 359 [Supplemental] | 359 [Supplemental] |
| 360 interface Window : EventTarget {}; | 360 interface Window : EventTarget {}; |
| 361 | 361 |
| 362 Element implements GlobalEventHandlers; | 362 Element implements GlobalEventHandlers; |
| OLD | NEW |