Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / dom / html / RadioNodeList.h
blob965bbb007c94363fcae1f27319af8c4fa2928930
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_RadioNodeList_h
8 #define mozilla_dom_RadioNodeList_h
10 #include "nsContentList.h"
11 #include "nsCOMPtr.h"
12 #include "HTMLFormElement.h"
13 #include "mozilla/dom/BindingDeclarations.h"
15 #define MOZILLA_DOM_RADIONODELIST_IMPLEMENTATION_IID \
16 { \
17 0xbba7f3e8, 0xf3b5, 0x42e5, { \
18 0x82, 0x08, 0xa6, 0x8b, 0xe0, 0xbc, 0x22, 0x19 \
19 } \
22 namespace mozilla::dom {
24 class RadioNodeList final : public nsSimpleContentList {
25 public:
26 explicit RadioNodeList(HTMLFormElement* aForm) : nsSimpleContentList(aForm) {}
28 virtual JSObject* WrapObject(JSContext* cx,
29 JS::Handle<JSObject*> aGivenProto) override;
30 void GetValue(nsString& retval, CallerType aCallerType);
31 void SetValue(const nsAString& value, CallerType aCallerType);
33 NS_DECL_ISUPPORTS_INHERITED
34 NS_DECLARE_STATIC_IID_ACCESSOR(MOZILLA_DOM_RADIONODELIST_IMPLEMENTATION_IID)
35 private:
36 ~RadioNodeList() = default;
39 NS_DEFINE_STATIC_IID_ACCESSOR(RadioNodeList,
40 MOZILLA_DOM_RADIONODELIST_IMPLEMENTATION_IID)
42 } // namespace mozilla::dom
44 #endif // mozilla_dom_RadioNodeList_h