1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:17:46 +00:00

LibWeb: Move the Page/Frame/EventHandler classes into Page/

This commit is contained in:
Andreas Kling 2020-07-28 19:27:41 +02:00
parent 481e838054
commit ef711f501e
24 changed files with 32 additions and 33 deletions

View file

@ -29,8 +29,8 @@
#include <AK/SharedBuffer.h>
#include <LibGfx/Painter.h>
#include <LibGfx/SystemTheme.h>
#include <LibWeb/Frame/Frame.h>
#include <LibWeb/Layout/LayoutDocument.h>
#include <LibWeb/Page/Frame.h>
#include <WebContent/WebContentClientEndpoint.h>
namespace WebContent {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibWeb/Page.h>
#include <LibWeb/Page/Page.h>
namespace WebContent {