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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 [Custom] void send(Blob data); | 317 [Custom] void send(Blob data); |
318 [Custom] void send(Document data); | 318 [Custom] void send(Document data); |
319 [Custom] void send([StrictTypeChecking] DOMString data); | 319 [Custom] void send([StrictTypeChecking] DOMString data); |
320 [Custom] void send(FormData data); | 320 [Custom] void send(FormData data); |
321 }; | 321 }; |
322 | 322 |
323 [Suppressed] | 323 [Suppressed] |
324 interface AbstractView {}; | 324 interface AbstractView {}; |
325 | 325 |
326 | 326 |
327 [Suppressed] | 327 interface InjectedScriptHost { |
328 interface InjectedScriptHost {}; | 328 [Custom] void inspect(any objectId, any hints); |
| 329 [Suppressed, Custom] any inspectedObject(long num); |
| 330 [Suppressed, Custom] any internalConstructorName(any obj); |
| 331 [Suppressed, Custom] boolean isHTMLAllCollection(any obj); |
| 332 [Suppressed, Custom] DOMString type(any obj); |
| 333 [Suppressed, Custom] any functionDetails(any obj); |
| 334 [Suppressed, Custom] any[] getInternalProperties(any obj); |
| 335 [Suppressed, Custom] EventListener[] getEventListeners(EventTarget target); |
| 336 [Suppressed, Custom] any evaluate(DOMString text); |
| 337 [Suppressed, Custom] void debugFunction(any fn); |
| 338 [Suppressed, Custom] void undebugFunction(any fn); |
| 339 [Suppressed, Custom] void monitorFunction(any fn); |
| 340 [Suppressed, Custom] void unmonitorFunction(any fn); |
| 341 |
| 342 // Only declarative scope (local, with and catch) is accepted. Returns undef
ined. |
| 343 [Suppressed, Custom] any setFunctionVariableValue(any functionObject, long s
copeIndex, DOMString variableName, any newValue); |
| 344 }; |
329 | 345 |
330 | 346 |
331 [Suppressed] | 347 [Suppressed] |
332 interface InspectorFrontendHost {}; | 348 interface InspectorFrontendHost {}; |
333 | 349 |
334 | 350 |
335 [Suppressed] | 351 [Suppressed] |
336 interface JavaScriptCallFrame {}; | 352 interface JavaScriptCallFrame {}; |
337 | 353 |
338 | 354 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 [Suppressed] | 388 [Suppressed] |
373 interface Promise {}; | 389 interface Promise {}; |
374 | 390 |
375 [Supplemental] | 391 [Supplemental] |
376 interface Screen { | 392 interface Screen { |
377 [Suppressed] | 393 [Suppressed] |
378 boolean lockOrientation(sequence<DOMString> orientations); | 394 boolean lockOrientation(sequence<DOMString> orientations); |
379 }; | 395 }; |
380 | 396 |
381 Element implements GlobalEventHandlers; | 397 Element implements GlobalEventHandlers; |
OLD | NEW |