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

LibWeb: Move XMLHttpRequest to separate XHR directory

In keeping with the one-directory-per-web-spec layout, let's move XHR
into its own clubhouse.
This commit is contained in:
Andreas Kling 2021-01-23 11:51:36 +01:00
parent 5d9c36d016
commit 5b91362d4e
8 changed files with 33 additions and 30 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -187,6 +187,9 @@ class PaintContext;
class Resource;
class ResourceLoader;
class StackingContext;
}
namespace Web::XHR {
class XMLHttpRequest;
}