2009-12-23 22:10:31 +03:00
|
|
|
/* vim: set shiftwidth=2 tabstop=8 autoindent cindent expandtab: */
|
2012-05-21 15:12:37 +04: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/. */
|
2014-02-28 18:58:42 +04:00
|
|
|
#ifndef mozilla_dom_TransitionEvent_h_
|
|
|
|
#define mozilla_dom_TransitionEvent_h_
|
2009-12-23 22:10:31 +03:00
|
|
|
|
2013-10-18 10:10:22 +04:00
|
|
|
#include "mozilla/EventForwards.h"
|
2014-03-05 04:37:43 +04:00
|
|
|
#include "mozilla/dom/Event.h"
|
2013-03-15 01:16:13 +04:00
|
|
|
#include "mozilla/dom/TransitionEventBinding.h"
|
2014-03-05 04:37:43 +04:00
|
|
|
#include "nsIDOMTransitionEvent.h"
|
2009-12-23 22:10:31 +03:00
|
|
|
|
2013-08-30 01:18:25 +04:00
|
|
|
class nsAString;
|
2009-12-23 22:10:31 +03:00
|
|
|
|
2014-02-28 18:58:42 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-03-05 04:37:43 +04:00
|
|
|
class TransitionEvent : public Event,
|
2014-02-28 18:58:42 +04:00
|
|
|
public nsIDOMTransitionEvent
|
2009-12-23 22:10:31 +03:00
|
|
|
{
|
|
|
|
public:
|
2014-02-28 18:58:42 +04:00
|
|
|
TransitionEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
InternalTransitionEvent* aEvent);
|
2009-12-23 22:10:31 +03:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2014-03-05 04:37:43 +04:00
|
|
|
NS_FORWARD_TO_EVENT
|
2009-12-23 22:10:31 +03:00
|
|
|
NS_DECL_NSIDOMTRANSITIONEVENT
|
|
|
|
|
2014-02-28 18:58:42 +04:00
|
|
|
static already_AddRefed<TransitionEvent>
|
|
|
|
Constructor(const GlobalObject& aGlobal,
|
2013-05-04 18:41:20 +04:00
|
|
|
const nsAString& aType,
|
2014-02-28 18:58:42 +04:00
|
|
|
const TransitionEventInit& aParam,
|
|
|
|
ErrorResult& aRv);
|
2013-05-04 18:41:20 +04:00
|
|
|
|
2014-04-09 02:27:18 +04:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE
|
2013-03-15 01:16:13 +04:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-09 02:27:17 +04:00
|
|
|
return TransitionEventBinding::Wrap(aCx, this);
|
2013-03-15 01:16:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// xpidl implementation
|
|
|
|
// GetPropertyName(nsAString& aPropertyName)
|
2013-05-04 18:41:20 +04:00
|
|
|
// GetPseudoElement(nsAString& aPreudoElement)
|
2013-03-15 01:16:13 +04:00
|
|
|
|
2013-10-18 10:10:22 +04:00
|
|
|
float ElapsedTime();
|
2014-07-09 01:23:17 +04:00
|
|
|
|
|
|
|
protected:
|
|
|
|
~TransitionEvent() {}
|
2009-12-23 22:10:31 +03:00
|
|
|
};
|
|
|
|
|
2014-02-28 18:58:42 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_TransitionEvent_h_
|