
We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
42 lines
1.2 KiB
C++
42 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2021, Dex♪ <dexes.ttp@gmail.com>
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/DOM/Event.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
struct MessageEventInit : public DOM::EventInit {
|
|
JS::Value data { JS::js_null() };
|
|
DeprecatedString origin { "" };
|
|
DeprecatedString last_event_id { "" };
|
|
};
|
|
|
|
class MessageEvent : public DOM::Event {
|
|
WEB_PLATFORM_OBJECT(MessageEvent, DOM::Event);
|
|
|
|
public:
|
|
static MessageEvent* create(JS::Realm&, FlyString const& event_name, MessageEventInit const& event_init = {});
|
|
static MessageEvent* construct_impl(JS::Realm&, FlyString const& event_name, MessageEventInit const& event_init);
|
|
|
|
MessageEvent(JS::Realm&, FlyString const& event_name, MessageEventInit const& event_init);
|
|
virtual ~MessageEvent() override;
|
|
|
|
JS::Value data() const { return m_data; }
|
|
DeprecatedString const& origin() const { return m_origin; }
|
|
DeprecatedString const& last_event_id() const { return m_last_event_id; }
|
|
|
|
private:
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
JS::Value m_data;
|
|
DeprecatedString m_origin;
|
|
DeprecatedString m_last_event_id;
|
|
};
|
|
|
|
}
|