diff options
author | Tim Schumacher <timschumi@gmx.de> | 2023-01-22 05:09:11 +0100 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2023-01-29 19:16:44 -0700 |
commit | 8464da143987e290fa3d9ad739b491e6adbffee6 (patch) | |
tree | 58905a6ac790d1e2368b9132403b190271617c4b /Userland/Libraries/LibAudio/MP3Loader.h | |
parent | 5f2ea31816612dead5bc7ac59d27da0bc4b45736 (diff) | |
download | serenity-8464da143987e290fa3d9ad739b491e6adbffee6.zip |
AK: Move `Stream` and `SeekableStream` from `LibCore`
`Stream` will be qualified as `AK::Stream` until we remove the
`Core::Stream` namespace. `IODevice` now reuses the `SeekMode` that is
defined by `SeekableStream`, since defining its own would require us to
qualify it with `AK::SeekMode` everywhere.
Diffstat (limited to 'Userland/Libraries/LibAudio/MP3Loader.h')
-rw-r--r-- | Userland/Libraries/LibAudio/MP3Loader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibAudio/MP3Loader.h b/Userland/Libraries/LibAudio/MP3Loader.h index de00366087..48d5ab1440 100644 --- a/Userland/Libraries/LibAudio/MP3Loader.h +++ b/Userland/Libraries/LibAudio/MP3Loader.h @@ -22,7 +22,7 @@ struct ScaleFactorBand; class MP3LoaderPlugin : public LoaderPlugin { public: - explicit MP3LoaderPlugin(NonnullOwnPtr<Core::Stream::SeekableStream> stream); + explicit MP3LoaderPlugin(NonnullOwnPtr<SeekableStream> stream); virtual ~MP3LoaderPlugin() = default; static Result<NonnullOwnPtr<MP3LoaderPlugin>, LoaderError> create(StringView path); |