/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim:set ts=2 sw=2 sts=2 et cindent: */ /* 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 nsDOMNotifyAudioAvailableEvent_h_ #define nsDOMNotifyAudioAvailableEvent_h_ #include "nsIDOMNotifyAudioAvailableEvent.h" #include "nsDOMEvent.h" #include "nsCycleCollectionParticipant.h" #include "mozilla/dom/NotifyAudioAvailableEventBinding.h" class nsPresContext; class nsDOMNotifyAudioAvailableEvent : public nsDOMEvent, public nsIDOMNotifyAudioAvailableEvent { public: nsDOMNotifyAudioAvailableEvent(mozilla::dom::EventTarget* aOwner, nsPresContext* aPresContext, mozilla::WidgetEvent* aEvent, uint32_t aEventType, float * aFrameBuffer, uint32_t aFrameBufferLength, float aTime); NS_DECL_ISUPPORTS_INHERITED NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED(nsDOMNotifyAudioAvailableEvent, nsDOMEvent) NS_DECL_NSIDOMNOTIFYAUDIOAVAILABLEEVENT NS_FORWARD_NSIDOMEVENT(nsDOMEvent::) nsresult NS_NewDOMAudioAvailableEvent(nsIDOMEvent** aInstancePtrResult, mozilla::dom::EventTarget* aOwner, nsPresContext* aPresContext, mozilla::WidgetEvent* aEvent, uint32_t aEventType, float * aFrameBuffer, uint32_t aFrameBufferLength, float aTime); ~nsDOMNotifyAudioAvailableEvent(); virtual JSObject* WrapObject(JSContext* aCx, JS::Handle aScope) MOZ_OVERRIDE { return mozilla::dom::NotifyAudioAvailableEventBinding::Wrap(aCx, aScope, this); } JSObject* GetFrameBuffer(JSContext* aCx, mozilla::ErrorResult& aRv) { JS::Rooted dummy(aCx); aRv = GetFrameBuffer(aCx, &dummy); return mCachedArray; } float Time() { return mTime; } void InitAudioAvailableEvent(const nsAString& aType, bool aCanBubble, bool aCancelable, const mozilla::dom::Nullable >& aFrameBuffer, uint32_t aFrameBufferLength, float aTime, bool aAllowAudioData, mozilla::ErrorResult& aRv); private: nsAutoArrayPtr mFrameBuffer; uint32_t mFrameBufferLength; float mTime; JS::Heap mCachedArray; bool mAllowAudioData; }; #endif // nsDOMNotifyAudioAvailableEvent_h_