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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
316 [Custom] void send(Blob data); | 316 [Custom] void send(Blob data); |
317 [Custom] void send(Document data); | 317 [Custom] void send(Document data); |
318 [Custom] void send([StrictTypeChecking] DOMString data); | 318 [Custom] void send([StrictTypeChecking] DOMString data); |
319 [Custom] void send(FormData data); | 319 [Custom] void send(FormData data); |
320 }; | 320 }; |
321 | 321 |
322 [Suppressed] | 322 [Suppressed] |
323 interface AbstractView {}; | 323 interface AbstractView {}; |
324 | 324 |
325 | 325 |
326 [Suppressed] | 326 [Supplemental, NoInterfaceObject] |
Jacob
2014/05/07 00:13:29
This is needed for the matching CL. Basically it
| |
327 interface InjectedScriptHost {}; | 327 interface InjectedScriptHost { |
328 [Suppressed, Custom] any inspectedObject(long num); | |
329 [Suppressed, Custom] any internalConstructorName(any obj); | |
330 [Suppressed, Custom] boolean isHTMLAllCollection(any obj); | |
331 [Suppressed, Custom] DOMString type(any obj); | |
332 [Suppressed, Custom] any functionDetails(any obj); | |
333 [Suppressed, Custom] any[] getInternalProperties(any obj); | |
334 [Suppressed, Custom] EventListener[] getEventListeners(EventTarget target); | |
335 [Suppressed, Custom] any evaluate(DOMString text); | |
336 [Suppressed, Custom] void debugFunction(any fn); | |
337 [Suppressed, Custom] void undebugFunction(any fn); | |
338 [Suppressed, Custom] void monitorFunction(any fn); | |
339 [Suppressed, Custom] void unmonitorFunction(any fn); | |
340 | |
341 // Only declarative scope (local, with and catch) is accepted. Returns undef ined. | |
342 [Suppressed, Custom] any setFunctionVariableValue(any functionObject, long s copeIndex, DOMString variableName, any newValue); | |
343 }; | |
328 | 344 |
329 | 345 |
330 [Suppressed] | 346 [Suppressed] |
331 interface InspectorFrontendHost {}; | 347 interface InspectorFrontendHost {}; |
332 | 348 |
333 | 349 |
334 [Suppressed] | 350 [Suppressed] |
335 interface JavaScriptCallFrame {}; | 351 interface JavaScriptCallFrame {}; |
336 | 352 |
337 | 353 |
(...skipping 27 matching lines...) Expand all Loading... | |
365 [Suppressed] | 381 [Suppressed] |
366 interface TextDecoder {}; | 382 interface TextDecoder {}; |
367 | 383 |
368 [Supplemental] | 384 [Supplemental] |
369 interface Window : EventTarget {}; | 385 interface Window : EventTarget {}; |
370 | 386 |
371 [Suppressed] | 387 [Suppressed] |
372 interface Promise {}; | 388 interface Promise {}; |
373 | 389 |
374 Element implements GlobalEventHandlers; | 390 Element implements GlobalEventHandlers; |
OLD | NEW |