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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 387 | 387 |
| 388 [Suppressed] | 388 [Suppressed] |
| 389 interface Promise {}; | 389 interface Promise {}; |
| 390 | 390 |
| 391 [Supplemental] | 391 [Supplemental] |
| 392 interface Screen { | 392 interface Screen { |
| 393 [Suppressed] | 393 [Suppressed] |
| 394 boolean lockOrientation(sequence<DOMString> orientations); | 394 boolean lockOrientation(sequence<DOMString> orientations); |
| 395 }; | 395 }; |
| 396 | 396 |
| 397 [Supplemental] interface CanvasRenderingContext2D { | |
| 398 [Suppressed] void webkitPutImageDataHD(ImageData? imagedata, float dx, float dy); | |
| 399 [Suppressed] void webkitPutImageDataHD(ImageData? imagedata, float dx, float dy, float dirtyX, float dirtyY, float dirtyWidth, float dirtyHeight); | |
| 400 [Suppressed] ImageData webkitGetImageDataHD(float sx, float sy, float sw, fl oat sh); | |
| 401 [Suppressed] attribute Path currentPath; | |
| 402 }; | |
| 403 | |
| 404 [Supplemental] interface AudioParam { | |
| 405 [Suppressed] void setTargetValueAtTime(float target, double time, double tim eConstant); | |
| 406 void setTargetAtTime(float target, double time, double timeConstant); | |
| 407 }; | |
| 408 | |
| 409 [Supplemental] interface AudioContext { | |
| 410 // Number of AudioBufferSourceNodes that are currently playing. | |
| 411 [Suppressed] readonly attribute unsigned long activeSourceCount; | |
| 412 [Suppressed] ScriptProcessorNode createJavaScriptNode(unsigned long bufferSi ze, optional unsigned long numberOfInputChannels, optional unsigned long numberO fOutputChannels); | |
| 413 [Suppressed] AudioBuffer createBuffer(ArrayBuffer? buffer, boolean mixToMono ); | |
| 414 [Suppressed] GainNode createGainNode(); | |
| 415 [Suppressed] DelayNode createDelayNode(optional double maxDelayTime); | |
| 416 }; | |
| 417 | |
| 418 [Supplemental] interface HTMLInputElement { | |
| 419 [Suppressed] attribute boolean webkitSpeech; | |
| 420 [Suppressed] attribute boolean webkitGrammar; | |
| 421 }; | |
| 422 | |
| 423 [Supplemental] interface ShadowRoot { | |
| 424 [Suppressed] attribute boolean applyAuthorStyles; | |
| 425 }; | |
| 426 | |
| 427 [Supplemental] interface BeforeLoadEvent { | |
| 428 [Suppressed] readonly attribute DOMString url; | |
| 429 }; | |
| 430 | |
| 431 [Supplemental] interface OscillatorNode { | |
| 432 [Suppressed] readonly attribute unsigned short playbackState; | |
| 433 }; | |
| 434 | |
| 435 [Supplemental] interface SVGElementInstance { | |
| 436 [Suppressed] readonly attribute SVGElementInstanceList childNodes; | |
| 437 }; | |
| 438 | |
| 439 [Supplemental] interface TimedItem { | |
| 440 [Suppressed] readonly attribute Timing specified; | |
| 441 }; | |
| 442 | |
| 443 [Supplemental] interface DOMImplementation { | |
| 444 [Suppressed] | |
| 445 CSSStyleSheet createCSSStyleSheet([Default=Undefined] optional DOMString tit le, | |
| 446 [Default=Undefined] optional DOMString med ia); | |
| 447 }; | |
| 448 | |
| 449 [Supplemental] interface SVGSVGElement { | |
| 450 [Suppressed] attribute DOMString contentStyleType; | |
| 451 [Suppressed] attribute DOMString contentScriptType; | |
| 452 }; | |
| 453 | |
| 454 [Supplemental] interface WorkerGlobalScope { | |
| 455 [Suppressed] readonly attribute NotificationCenter webkitNotifications; | |
| 456 }; | |
| 457 | |
| 458 [Supplemental] interface AudioBuffer { | |
| 459 [Suppressed] attribute float gain; | |
| 460 }; | |
| 461 | |
| 462 [Supplemental] interface WorkerCrypto { | |
| 463 [Suppressed] ArrayBufferView getRandomValues(ArrayBufferView array); | |
| 464 }; | |
| 465 | |
| 466 [Supplemental] interface HTMLFormElement { | |
| 467 void requestAutocomplete([Default=Undefined] optional Dictionary details); | |
| 468 [Suppressed] void requestAutocomplete(); | |
| 469 }; | |
| 470 | |
| 471 [Supplemental] interface AudioBufferSourceNode { | |
| 472 [Suppressed] readonly attribute unsigned short playbackState; | |
| 473 }; | |
| 474 | |
| 475 [Supplemental] interface SVGElementInstanceList { | |
| 476 [Suppressed] readonly attribute unsigned long length; | |
| 477 }; | |
| 478 | |
| 479 [Supplemental] interface SpeechInputResult { | |
| 480 [Suppressed] readonly attribute DOMString utterance; | |
| 481 [Suppressed] readonly attribute float confidence; | |
| 482 }; | |
| 483 | |
| 484 [Supplemental] interface SpeechInputEvent : Event { | |
| 485 [Suppressed] readonly attribute SpeechInputResultList results; | |
| 486 }; | |
| 487 | |
| 488 [Supplemental] interface SpeechInputResultList { | |
| 489 [Suppressed] readonly attribute unsigned long length; | |
| 490 }; | |
| 491 | |
| 492 [Supplemental] interface AudioBufferSourceNode : AudioSourceNode { | |
| 493 [Suppressed] readonly attribute AudioParam gain; | |
|
Emily Fortuna
2014/06/09 22:22:44
is this really removed? What are users supposed to
Jacob
2014/06/09 22:28:41
It was removed from here. Now it is only on the Ga
| |
| 494 }; | |
| 495 | |
| 397 Element implements GlobalEventHandlers; | 496 Element implements GlobalEventHandlers; |
| OLD | NEW |