/* 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 dom_bindings_test_TestInterfaceObservableArrayBase_h #define dom_bindings_test_TestInterfaceObservableArrayBase_h #include "nsCOMPtr.h" #include "nsTArray.h" #include "nsWrapperCache.h" class nsPIDOMWindowInner; namespace mozilla { class ErrorResult; namespace dom { class GlobalObject; class SetDeleteBooleanCallback; class SetDeleteObjectCallback; struct ObservableArrayCallbacks; class TestInterfaceObservableArrayBase : public nsISupports, public nsWrapperCache { public: NS_DECL_CYCLE_COLLECTING_ISUPPORTS NS_DECL_CYCLE_COLLECTION_WRAPPERCACHE_CLASS(TestInterfaceObservableArrayBase) nsPIDOMWindowInner* GetParentObject() const; virtual JSObject* WrapObject(JSContext* aCx, JS::Handle aGivenProto) override; MOZ_CAN_RUN_SCRIPT_BOUNDARY void OnSetObservableArrayObject(JSContext* aCx, JS::Handle aValue, uint32_t aIndex, ErrorResult& aRv); MOZ_CAN_RUN_SCRIPT_BOUNDARY void OnDeleteObservableArrayObject(JSContext* aCx, JS::Handle aValue, uint32_t aIndex, ErrorResult& aRv); MOZ_CAN_RUN_SCRIPT_BOUNDARY void OnSetObservableArrayBoolean(bool aValue, uint32_t aIndex, ErrorResult& aRv); MOZ_CAN_RUN_SCRIPT_BOUNDARY void OnDeleteObservableArrayBoolean(bool aValue, uint32_t aIndex, ErrorResult& aRv); bool BooleanElementAtInternal(uint32_t aIndex, ErrorResult& aRv); void ObjectElementAtInternal(JSContext* aCx, uint32_t aIndex, JS::MutableHandle aValue, ErrorResult& aRv); void BooleanReplaceElementAtInternal(uint32_t aIndex, bool aValue, ErrorResult& aRv); void ObjectReplaceElementAtInternal(JSContext* aCx, uint32_t aIndex, JS::Handle aValue, ErrorResult& aRv); void BooleanAppendElementInternal(bool aValue, ErrorResult& aRv); void ObjectAppendElementInternal(JSContext* aCx, JS::Handle aValue, ErrorResult& aRv); void BooleanRemoveLastElementInternal(ErrorResult& aRv); void ObjectRemoveLastElementInternal(ErrorResult& aRv); uint32_t BooleanLengthInternal(ErrorResult& aRv); uint32_t ObjectLengthInternal(ErrorResult& aRv); protected: explicit TestInterfaceObservableArrayBase( nsPIDOMWindowInner* aParent, const ObservableArrayCallbacks& aCallbacks); virtual ~TestInterfaceObservableArrayBase() = default; nsCOMPtr mParent; RefPtr mSetBooleanCallback; RefPtr mDeleteBooleanCallback; RefPtr mSetObjectCallback; RefPtr mDeleteObjectCallback; }; } // namespace dom } // namespace mozilla #endif // dom_bindings_test_TestInterfaceObservableArrayBase_h