mirror of
https://github.com/mozilla-firefox/firefox
synced 2026-08-12 20:45:22 +00:00
88 lines
3.2 KiB
C++
88 lines
3.2 KiB
C++
/* 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<JSObject*> aGivenProto) override;
|
||
|
|
|
||
|
|
MOZ_CAN_RUN_SCRIPT_BOUNDARY
|
||
|
|
void OnSetObservableArrayObject(JSContext* aCx, JS::Handle<JSObject*> aValue,
|
||
|
|
uint32_t aIndex, ErrorResult& aRv);
|
||
|
|
|
||
|
|
MOZ_CAN_RUN_SCRIPT_BOUNDARY
|
||
|
|
void OnDeleteObservableArrayObject(JSContext* aCx,
|
||
|
|
JS::Handle<JSObject*> 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<JSObject*> aValue,
|
||
|
|
ErrorResult& aRv);
|
||
|
|
|
||
|
|
void BooleanReplaceElementAtInternal(uint32_t aIndex, bool aValue,
|
||
|
|
ErrorResult& aRv);
|
||
|
|
void ObjectReplaceElementAtInternal(JSContext* aCx, uint32_t aIndex,
|
||
|
|
JS::Handle<JSObject*> aValue,
|
||
|
|
ErrorResult& aRv);
|
||
|
|
|
||
|
|
void BooleanAppendElementInternal(bool aValue, ErrorResult& aRv);
|
||
|
|
void ObjectAppendElementInternal(JSContext* aCx, JS::Handle<JSObject*> 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<nsPIDOMWindowInner> mParent;
|
||
|
|
RefPtr<SetDeleteBooleanCallback> mSetBooleanCallback;
|
||
|
|
RefPtr<SetDeleteBooleanCallback> mDeleteBooleanCallback;
|
||
|
|
RefPtr<SetDeleteObjectCallback> mSetObjectCallback;
|
||
|
|
RefPtr<SetDeleteObjectCallback> mDeleteObjectCallback;
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace dom
|
||
|
|
} // namespace mozilla
|
||
|
|
|
||
|
|
#endif // dom_bindings_test_TestInterfaceObservableArrayBase_h
|