1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:07:44 +00:00

LibGfx: More work on header dependency reduction

This commit is contained in:
Andreas Kling 2020-02-14 23:28:42 +01:00
parent d85b09893d
commit 08cae2773d
10 changed files with 30 additions and 21 deletions

View file

@ -24,6 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibGfx/Bitmap.h>
#include <LibGfx/ImageDecoder.h>
#include <LibHTML/CSS/StyleResolver.h>
#include <LibHTML/DOM/Document.h>
#include <LibHTML/DOM/HTMLImageElement.h>

View file

@ -27,8 +27,7 @@
#pragma once
#include <AK/ByteBuffer.h>
#include <LibGfx/Bitmap.h>
#include <LibGfx/ImageDecoder.h>
#include <LibGfx/Forward.h>
#include <LibHTML/DOM/HTMLElement.h>
class LayoutDocument;