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

Ladybird: Move the initial blank page load to BrowserWindow

Takes care of a FIXME :^)
This commit is contained in:
Karol Kosek 2023-01-08 15:01:26 +01:00 committed by Linus Groh
parent 5e89773937
commit 194ddca24f
3 changed files with 15 additions and 13 deletions

View file

@ -26,7 +26,11 @@ public:
WebContentView& view() { return *m_view; }
void navigate(QString);
enum class LoadType {
Normal,
HistoryNavigation,
};
void navigate(QString, LoadType = LoadType::Normal);
void debug_request(DeprecatedString const& request, DeprecatedString const& argument);