1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:47:35 +00:00

Everywhere: Remove the AK:: qualifier from Stream usages

This commit is contained in:
Tim Schumacher 2023-02-10 01:00:18 +01:00 committed by Linus Groh
parent 874c7bba28
commit 43f98ac6e1
73 changed files with 275 additions and 278 deletions

View file

@ -36,7 +36,7 @@ public:
int fd() const { return m_fd; }
bool stop();
void stream_into(AK::Stream&);
void stream_into(Stream&);
bool should_buffer_all_input() const { return m_should_buffer_all_input; }
/// Note: Will override `on_finish', and `on_headers_received', and expects `on_buffered_request_finish' to be set!
@ -73,12 +73,12 @@ private:
};
struct InternalStreamData {
InternalStreamData(NonnullOwnPtr<AK::Stream> stream)
InternalStreamData(NonnullOwnPtr<Stream> stream)
: read_stream(move(stream))
{
}
NonnullOwnPtr<AK::Stream> read_stream;
NonnullOwnPtr<Stream> read_stream;
RefPtr<Core::Notifier> read_notifier;
bool success;
u32 total_size { 0 };