/* vim: set shiftwidth=2 tabstop=8 autoindent cindent expandtab: */ /* 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/. */ #ifndef nsDOMTransitionEvent_h_ #define nsDOMTransitionEvent_h_ #include "nsDOMEvent.h" #include "nsIDOMTransitionEvent.h" #include "mozilla/EventForwards.h" #include "mozilla/dom/TransitionEventBinding.h" class nsAString; class nsDOMTransitionEvent : public nsDOMEvent, public nsIDOMTransitionEvent { public: nsDOMTransitionEvent(mozilla::dom::EventTarget* aOwner, nsPresContext *aPresContext, mozilla::InternalTransitionEvent* aEvent); NS_DECL_ISUPPORTS_INHERITED NS_FORWARD_TO_NSDOMEVENT NS_DECL_NSIDOMTRANSITIONEVENT static already_AddRefed Constructor(const mozilla::dom::GlobalObject& aGlobal, const nsAString& aType, const mozilla::dom::TransitionEventInit& aParam, mozilla::ErrorResult& aRv); virtual JSObject* WrapObject(JSContext* aCx, JS::Handle aScope) MOZ_OVERRIDE { return mozilla::dom::TransitionEventBinding::Wrap(aCx, aScope, this); } // xpidl implementation // GetPropertyName(nsAString& aPropertyName) // GetPseudoElement(nsAString& aPreudoElement) float ElapsedTime(); }; #endif /* !defined(nsDOMTransitionEvent_h_) */