2022-02-06 19:12:57 -07:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, Andrew Kaster <akaster@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-09-04 14:30:38 +02:00
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
2022-02-06 19:12:57 -07:00
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/workers.html#worker-locations
|
2022-09-04 14:30:38 +02:00
|
|
|
class WorkerLocation : public Bindings::PlatformObject {
|
|
|
|
WEB_PLATFORM_OBJECT(WorkerLocation, Bindings::PlatformObject);
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_DECLARE_ALLOCATOR(WorkerLocation);
|
2022-09-04 14:30:38 +02:00
|
|
|
|
2022-02-06 19:12:57 -07:00
|
|
|
public:
|
2022-09-04 14:30:38 +02:00
|
|
|
virtual ~WorkerLocation() override;
|
2022-02-06 19:12:57 -07:00
|
|
|
|
2024-11-28 14:39:23 +00:00
|
|
|
String href() const;
|
2024-11-23 20:10:34 +13:00
|
|
|
String origin() const;
|
2024-11-28 14:39:23 +00:00
|
|
|
String protocol() const;
|
|
|
|
String host() const;
|
|
|
|
String hostname() const;
|
|
|
|
String port() const;
|
2024-08-05 16:55:39 +12:00
|
|
|
String pathname() const;
|
2024-11-28 14:39:23 +00:00
|
|
|
String search() const;
|
|
|
|
String hash() const;
|
2022-02-06 19:12:57 -07:00
|
|
|
|
|
|
|
private:
|
2022-09-04 14:30:38 +02:00
|
|
|
explicit WorkerLocation(WorkerGlobalScope&);
|
|
|
|
|
2024-07-28 19:14:45 +01:00
|
|
|
virtual void initialize(JS::Realm&) override;
|
2022-09-04 14:30:38 +02:00
|
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
2022-02-06 19:12:57 -07:00
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
GC::Ref<WorkerGlobalScope> m_global_scope;
|
2022-02-06 19:12:57 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|