mirror of
https://github.com/servo/servo.git
synced 2025-09-30 08:39:16 +01:00
script: Move webaudio DOM interfaces to script/dom/audio/
(#38894)
Moves interfaces defined by the webaudio spec (27 files) to the new `script/dom/audio/` module from the `script/dom/` module. Testing: Just a refactor shouldn't need any testing Fixes: N/A Signed-off-by: Ashwin Naren <arihant2math@gmail.com>
This commit is contained in:
parent
6ae61d796e
commit
b4a454aaea
31 changed files with 114 additions and 108 deletions
31
components/script/dom/audio/mod.rs
Normal file
31
components/script/dom/audio/mod.rs
Normal file
|
@ -0,0 +1,31 @@
|
|||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
||||
|
||||
pub(crate) mod analysernode;
|
||||
pub(crate) mod audiobuffer;
|
||||
pub(crate) mod audiobuffersourcenode;
|
||||
pub(crate) mod audiocontext;
|
||||
pub(crate) mod audiodestinationnode;
|
||||
pub(crate) mod audiolistener;
|
||||
pub(crate) mod audionode;
|
||||
pub(crate) mod audioparam;
|
||||
pub(crate) mod audioscheduledsourcenode;
|
||||
pub(crate) mod audiotrack;
|
||||
pub(crate) mod audiotracklist;
|
||||
pub(crate) mod baseaudiocontext;
|
||||
pub(crate) mod biquadfilternode;
|
||||
pub(crate) mod channelmergernode;
|
||||
pub(crate) mod channelsplitternode;
|
||||
pub(crate) mod constantsourcenode;
|
||||
pub(crate) mod gainnode;
|
||||
pub(crate) mod iirfilternode;
|
||||
pub(crate) mod mediaelementaudiosourcenode;
|
||||
pub(crate) mod mediastreamaudiodestinationnode;
|
||||
pub(crate) mod mediastreamaudiosourcenode;
|
||||
pub(crate) mod mediastreamtrackaudiosourcenode;
|
||||
pub(crate) mod offlineaudiocompletionevent;
|
||||
pub(crate) mod offlineaudiocontext;
|
||||
pub(crate) mod oscillatornode;
|
||||
pub(crate) mod pannernode;
|
||||
pub(crate) mod stereopannernode;
|
Loading…
Add table
Add a link
Reference in a new issue