#ifndef HashChangeEvent_h
#define HashChangeEvent_h
#include "core/events/Event.h"
namespace WebCore {
struct HashChangeEventInit : public EventInit {
HashChangeEventInit()
{
};
String oldURL;
String newURL;
};
class HashChangeEvent FINAL : public Event {
public:
static PassRefPtrWillBeRawPtr<HashChangeEvent> create()
{
return adoptRefWillBeNoop(new HashChangeEvent);
}
static PassRefPtrWillBeRawPtr<HashChangeEvent> create(const String& oldURL, const String& newURL)
{
return adoptRefWillBeNoop(new HashChangeEvent(oldURL, newURL));
}
static PassRefPtrWillBeRawPtr<HashChangeEvent> create(const AtomicString& type, const HashChangeEventInit& initializer)
{
return adoptRefWillBeNoop(new HashChangeEvent(type, initializer));
}
void initHashChangeEvent(const AtomicString& eventType, bool canBubble, bool cancelable, const String& oldURL, const String& newURL)
{
if (dispatched())
return;
initEvent(eventType, canBubble, cancelable);
m_oldURL = oldURL;
m_newURL = newURL;
}
const String& oldURL() const { return m_oldURL; }
const String& newURL() const { return m_newURL; }
virtual const AtomicString& interfaceName() const OVERRIDE { return EventNames::HashChangeEvent; }
virtual void trace(Visitor* visitor) OVERRIDE { Event::trace(visitor); }
private:
HashChangeEvent()
{
ScriptWrappable::init(this);
}
HashChangeEvent(const String& oldURL, const String& newURL)
: Event(EventTypeNames::hashchange, false, false)
, m_oldURL(oldURL)
, m_newURL(newURL)
{
ScriptWrappable::init(this);
}
HashChangeEvent(const AtomicString& type, const HashChangeEventInit& initializer)
: Event(type, initializer)
, m_oldURL(initializer.oldURL)
, m_newURL(initializer.newURL)
{
ScriptWrappable::init(this);
}
String m_oldURL;
String m_newURL;
};
}
#endif