mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-05 14:42:50 +02:00
LibWeb+LibURL: Move HTML::Origin to URL::Origin
While Origin is defined in the HTML spec - this leaves us with quite an awkward relationship as the URL spec makes use of AO's from what is defined in the HTML spec. To simplify this factoring, relocate Origin into LibURL. (cherry picked from commit dc401f49ea7e861064484e79594e35c3d93000ae; amended to fix minor conflicts due to serenity not (yet?) having a LibUnicode/Segmenter.h include in Document.cpp, and due to BrowsingContext already having LadybirdBrowser/ladybird#2358 in serenity)
This commit is contained in:
committed by
Nico Weber
parent
d6d8ce68c8
commit
2855880f8a
@@ -8,8 +8,8 @@
|
||||
|
||||
#include <AK/String.h>
|
||||
#include <LibIPC/Forward.h>
|
||||
#include <LibURL/Origin.h>
|
||||
#include <LibURL/URL.h>
|
||||
#include <LibWeb/HTML/Origin.h>
|
||||
#include <LibWeb/HTML/PolicyContainers.h>
|
||||
|
||||
namespace Web::HTML {
|
||||
@@ -23,11 +23,11 @@ struct SerializedEnvironmentSettingsObject {
|
||||
String id;
|
||||
URL::URL creation_url;
|
||||
URL::URL top_level_creation_url;
|
||||
Origin top_level_origin;
|
||||
URL::Origin top_level_origin;
|
||||
|
||||
String api_url_character_encoding;
|
||||
URL::URL api_base_url;
|
||||
Origin origin;
|
||||
URL::Origin origin;
|
||||
PolicyContainer policy_container;
|
||||
CanUseCrossOriginIsolatedAPIs cross_origin_isolated_capability;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user