mirror of
https://github.com/servo/servo
synced 2026-05-09 08:32:31 +02:00
script: move media interfaces to `script/dom/media` module Testing: Just a refactor shouldn't need any testing Fixes: Partially https://github.com/servo/servo/issues/38901 Signed-off-by: Yerkebulan Tulibergenov <yerkebulan@gmail.com>
16 lines
544 B
Rust
16 lines
544 B
Rust
/* 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 mediadeviceinfo;
|
|
pub(crate) mod mediadevices;
|
|
pub(crate) mod mediaerror;
|
|
pub(crate) mod mediafragmentparser;
|
|
pub(crate) mod medialist;
|
|
pub(crate) mod mediametadata;
|
|
pub(crate) mod mediaquerylist;
|
|
pub(crate) mod mediaquerylistevent;
|
|
pub(crate) mod mediasession;
|
|
pub(crate) mod mediastream;
|
|
pub(crate) mod mediastreamtrack;
|