blob: eda36f4591b63de59e6558db5072c234ea6e950e [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ExtendableMessageEvent_h
#define ExtendableMessageEvent_h
#include "modules/EventModules.h"
#include "modules/ModulesExport.h"
#include "modules/serviceworkers/ExtendableEvent.h"
#include "modules/serviceworkers/ExtendableMessageEventInit.h"
namespace blink {
class MODULES_EXPORT ExtendableMessageEvent final : public ExtendableEvent {
DEFINE_WRAPPERTYPEINFO();
public:
static ExtendableMessageEvent* Create(
const AtomicString& type,
const ExtendableMessageEventInit& initializer);
static ExtendableMessageEvent* Create(
const AtomicString& type,
const ExtendableMessageEventInit& initializer,
WaitUntilObserver*);
static ExtendableMessageEvent* Create(
scoped_refptr<SerializedScriptValue> data,
const String& origin,
MessagePortArray* ports,
WaitUntilObserver*);
static ExtendableMessageEvent* Create(
scoped_refptr<SerializedScriptValue> data,
const String& origin,
MessagePortArray* ports,
ServiceWorkerClient* source,
WaitUntilObserver*);
static ExtendableMessageEvent* Create(
scoped_refptr<SerializedScriptValue> data,
const String& origin,
MessagePortArray* ports,
ServiceWorker* source,
WaitUntilObserver*);
SerializedScriptValue* SerializedData() const {
return serialized_data_.get();
}
void SetSerializedData(scoped_refptr<SerializedScriptValue> serialized_data) {
serialized_data_ = std::move(serialized_data);
}
const String& origin() const { return origin_; }
const String& lastEventId() const { return last_event_id_; }
MessagePortArray ports() const;
void source(ClientOrServiceWorkerOrMessagePort& result) const;
const AtomicString& InterfaceName() const override;
void Trace(blink::Visitor*) override;
private:
ExtendableMessageEvent(const AtomicString& type,
const ExtendableMessageEventInit& initializer);
ExtendableMessageEvent(const AtomicString& type,
const ExtendableMessageEventInit& initializer,
WaitUntilObserver*);
ExtendableMessageEvent(scoped_refptr<SerializedScriptValue> data,
const String& origin,
MessagePortArray* ports,
WaitUntilObserver*);
scoped_refptr<SerializedScriptValue> serialized_data_;
String origin_;
String last_event_id_;
Member<ServiceWorkerClient> source_as_client_;
Member<ServiceWorker> source_as_service_worker_;
Member<MessagePort> source_as_message_port_;
Member<MessagePortArray> ports_;
};
} // namespace blink
#endif // ExtendableMessageEvent_h