mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 16:10:20 +00:00
Browser+WebDriver: Add missing header includes
These are currently being included transitively, and will cause an error when those intermediate includes are removed.
This commit is contained in:
parent
2c9549cb76
commit
c64da0d00c
Notes:
sideshowbarker
2024-07-17 04:34:38 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/c64da0d00c Pull-request: https://github.com/SerenityOS/serenity/pull/16033 Reviewed-by: https://github.com/linusg ✅
3 changed files with 6 additions and 0 deletions
|
@ -14,6 +14,8 @@
|
|||
#include <LibGUI/Widget.h>
|
||||
#include <LibGfx/ShareableBitmap.h>
|
||||
#include <LibHTTP/Job.h>
|
||||
#include <LibWeb/Cookie/Cookie.h>
|
||||
#include <LibWeb/Cookie/ParsedCookie.h>
|
||||
#include <LibWeb/Forward.h>
|
||||
|
||||
namespace WebView {
|
||||
|
|
|
@ -9,7 +9,9 @@
|
|||
*/
|
||||
|
||||
#include <AK/Debug.h>
|
||||
#include <AK/JsonObject.h>
|
||||
#include <AK/JsonParser.h>
|
||||
#include <AK/JsonValue.h>
|
||||
#include <LibCore/DateTime.h>
|
||||
#include <LibCore/MemoryStream.h>
|
||||
#include <LibHTTP/HttpRequest.h>
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
#include "Session.h"
|
||||
#include "BrowserConnection.h"
|
||||
#include "Client.h"
|
||||
#include <AK/JsonObject.h>
|
||||
#include <AK/JsonParser.h>
|
||||
#include <AK/NumericLimits.h>
|
||||
#include <AK/Time.h>
|
||||
#include <LibCore/LocalServer.h>
|
||||
|
|
Loading…
Reference in a new issue