diff -r 000000000000 -r 6474c204b198 dom/events/AnimationEvent.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dom/events/AnimationEvent.cpp Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,100 @@ +/* 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/. */ + +#include "mozilla/dom/AnimationEvent.h" +#include "mozilla/ContentEvents.h" +#include "prtime.h" + +namespace mozilla { +namespace dom { + +AnimationEvent::AnimationEvent(EventTarget* aOwner, + nsPresContext* aPresContext, + InternalAnimationEvent* aEvent) + : Event(aOwner, aPresContext, + aEvent ? aEvent : new InternalAnimationEvent(false, 0)) +{ + if (aEvent) { + mEventIsInternal = false; + } + else { + mEventIsInternal = true; + mEvent->time = PR_Now(); + } +} + +NS_INTERFACE_MAP_BEGIN(AnimationEvent) + NS_INTERFACE_MAP_ENTRY(nsIDOMAnimationEvent) +NS_INTERFACE_MAP_END_INHERITING(Event) + +NS_IMPL_ADDREF_INHERITED(AnimationEvent, Event) +NS_IMPL_RELEASE_INHERITED(AnimationEvent, Event) + +//static +already_AddRefed +AnimationEvent::Constructor(const GlobalObject& aGlobal, + const nsAString& aType, + const AnimationEventInit& aParam, + ErrorResult& aRv) +{ + nsCOMPtr t = do_QueryInterface(aGlobal.GetAsSupports()); + nsRefPtr e = new AnimationEvent(t, nullptr, nullptr); + bool trusted = e->Init(t); + + aRv = e->InitEvent(aType, aParam.mBubbles, aParam.mCancelable); + + InternalAnimationEvent* internalEvent = e->mEvent->AsAnimationEvent(); + internalEvent->animationName = aParam.mAnimationName; + internalEvent->elapsedTime = aParam.mElapsedTime; + internalEvent->pseudoElement = aParam.mPseudoElement; + + e->SetTrusted(trusted); + return e.forget(); +} + +NS_IMETHODIMP +AnimationEvent::GetAnimationName(nsAString& aAnimationName) +{ + aAnimationName = mEvent->AsAnimationEvent()->animationName; + return NS_OK; +} + +NS_IMETHODIMP +AnimationEvent::GetElapsedTime(float* aElapsedTime) +{ + *aElapsedTime = ElapsedTime(); + return NS_OK; +} + +float +AnimationEvent::ElapsedTime() +{ + return mEvent->AsAnimationEvent()->elapsedTime; +} + +NS_IMETHODIMP +AnimationEvent::GetPseudoElement(nsAString& aPseudoElement) +{ + aPseudoElement = mEvent->AsAnimationEvent()->pseudoElement; + return NS_OK; +} + +} // namespace dom +} // namespace mozilla + +using namespace mozilla; +using namespace mozilla::dom; + +nsresult +NS_NewDOMAnimationEvent(nsIDOMEvent** aInstancePtrResult, + EventTarget* aOwner, + nsPresContext* aPresContext, + InternalAnimationEvent* aEvent) +{ + AnimationEvent* it = new AnimationEvent(aOwner, aPresContext, aEvent); + NS_ADDREF(it); + *aInstancePtrResult = static_cast(it); + return NS_OK; +}