Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / dom / html / HTMLPictureElement.h
blob5ec2a3abd0bc238ca74958bf131903a397576da0
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_HTMLPictureElement_h
8 #define mozilla_dom_HTMLPictureElement_h
10 #include "mozilla/Attributes.h"
11 #include "nsGenericHTMLElement.h"
13 namespace mozilla {
14 class ErrorResult;
15 namespace dom {
17 class HTMLPictureElement final : public nsGenericHTMLElement {
18 public:
19 explicit HTMLPictureElement(
20 already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
22 // nsISupports
23 NS_INLINE_DECL_REFCOUNTING_INHERITED(HTMLPictureElement, nsGenericHTMLElement)
25 virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
26 virtual void RemoveChildNode(nsIContent* aKid, bool aNotify) override;
27 virtual void InsertChildBefore(nsIContent* aKid, nsIContent* aBeforeThis,
28 bool aNotify, ErrorResult& aRv) override;
30 protected:
31 virtual ~HTMLPictureElement();
33 virtual JSObject* WrapNode(JSContext* aCx,
34 JS::Handle<JSObject*> aGivenProto) override;
37 } // namespace dom
38 } // namespace mozilla
40 #endif // mozilla_dom_HTMLPictureElement_h