chromium/third_party/blink/renderer/core/workers/custom_event_message.h

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_WORKERS_CUSTOM_EVENT_MESSAGE_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_WORKERS_CUSTOM_EVENT_MESSAGE_H_

#include <optional>

#include "third_party/blink/public/common/messaging/message_port_channel.h"
#include "third_party/blink/public/common/messaging/transferable_message.h"
#include "third_party/blink/public/common/scheduler/task_attribution_id.h"
#include "third_party/blink/renderer/bindings/core/v8/serialization/serialized_script_value.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/messaging/blink_cloneable_message.h"
#include "third_party/blink/renderer/platform/weborigin/security_origin.h"
#include "third_party/blink/renderer/platform/wtf/cross_thread_copier.h"

namespace blink {

struct CORE_EXPORT CustomEventMessage {};

}  // namespace blink

namespace WTF {

template <>
struct CrossThreadCopier<blink::CustomEventMessage> {};

}  // namespace WTF

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_WORKERS_CUSTOM_EVENT_MESSAGE_H_