blob: ab125efb8abe42e1f14860d93c0a83b357db9b0d [file] [log] [blame]
// Copyright 2015 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 SyncEvent_h
#define SyncEvent_h
#include "modules/EventModules.h"
#include "modules/background_sync/SyncEventInit.h"
#include "modules/background_sync/SyncRegistration.h"
#include "modules/serviceworkers/ExtendableEvent.h"
#include "platform/heap/Handle.h"
#include "wtf/text/AtomicString.h"
#include "wtf/text/WTFString.h"
namespace blink {
class MODULES_EXPORT SyncEvent final : public ExtendableEvent {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<SyncEvent> create()
{
return adoptRefWillBeNoop(new SyncEvent);
}
static PassRefPtrWillBeRawPtr<SyncEvent> create(const AtomicString& type, SyncRegistration* syncRegistration, WaitUntilObserver* observer)
{
return adoptRefWillBeNoop(new SyncEvent(type, syncRegistration, observer));
}
static PassRefPtrWillBeRawPtr<SyncEvent> create(const AtomicString& type, const SyncEventInit& init)
{
return adoptRefWillBeNoop(new SyncEvent(type, init));
}
~SyncEvent() override;
const AtomicString& interfaceName() const override;
SyncRegistration* registration();
DECLARE_VIRTUAL_TRACE();
private:
SyncEvent();
SyncEvent(const AtomicString& type, SyncRegistration*, WaitUntilObserver*);
SyncEvent(const AtomicString& type, const SyncEventInit&);
PersistentWillBeMember<SyncRegistration> m_syncRegistration;
};
} // namespace blink
#endif // SyncEvent_h