mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:07:35 +00:00
LibWeb: Move ImageDecoder client connection singleton to its own file
This will allow us to use it in more places around LibWeb.
This commit is contained in:
parent
b224efe73b
commit
e017fe92e6
4 changed files with 40 additions and 13 deletions
15
Userland/Libraries/LibWeb/ImageDecoding.h
Normal file
15
Userland/Libraries/LibWeb/ImageDecoding.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
/*
|
||||
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <LibImageDecoderClient/Client.h>
|
||||
|
||||
namespace Web {
|
||||
|
||||
ImageDecoderClient::Client& image_decoder_client();
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue