2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsDOMBeforeUnloadEvent_h__
|
|
|
|
#define nsDOMBeforeUnloadEvent_h__
|
|
|
|
|
|
|
|
#include "nsIDOMBeforeUnloadEvent.h"
|
|
|
|
#include "nsDOMEvent.h"
|
2013-03-26 04:45:39 -07:00
|
|
|
#include "mozilla/dom/BeforeUnloadEventBinding.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-10-21 02:38:39 -07:00
|
|
|
class nsDOMBeforeUnloadEvent : public nsDOMEvent,
|
|
|
|
public nsIDOMBeforeUnloadEvent
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
2013-03-09 03:34:29 -08:00
|
|
|
nsDOMBeforeUnloadEvent(mozilla::dom::EventTarget* aOwner,
|
2013-10-01 20:46:04 -07:00
|
|
|
nsPresContext* aPresContext,
|
|
|
|
mozilla::WidgetEvent* aEvent)
|
2013-03-26 04:45:39 -07:00
|
|
|
: nsDOMEvent(aOwner, aPresContext, aEvent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-04-25 09:29:54 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aScope) MOZ_OVERRIDE
|
2013-03-26 04:45:39 -07:00
|
|
|
{
|
|
|
|
return mozilla::dom::BeforeUnloadEventBinding::Wrap(aCx, aScope, this);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// Forward to nsDOMEvent
|
|
|
|
NS_FORWARD_TO_NSDOMEVENT
|
|
|
|
|
|
|
|
// nsIDOMBeforeUnloadEvent Interface
|
|
|
|
NS_DECL_NSIDOMBEFOREUNLOADEVENT
|
2009-06-24 01:42:00 -07:00
|
|
|
protected:
|
|
|
|
nsString mText;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsDOMBeforeUnloadEvent_h__
|