2013-01-04 20:50:21 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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 mozilla_dom_SVGMetadataElement_h
|
|
|
|
#define mozilla_dom_SVGMetadataElement_h
|
|
|
|
|
2013-05-29 13:43:41 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-01-04 20:50:21 -05:00
|
|
|
#include "nsSVGElement.h"
|
|
|
|
|
|
|
|
nsresult NS_NewSVGMetadataElement(nsIContent **aResult,
|
2014-06-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-01-04 20:50:21 -05:00
|
|
|
|
|
|
|
typedef nsSVGElement SVGMetadataElementBase;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-03-27 21:23:09 -04:00
|
|
|
class SVGMetadataElement MOZ_FINAL : public SVGMetadataElementBase
|
2013-01-04 20:50:21 -05:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
friend nsresult (::NS_NewSVGMetadataElement(nsIContent **aResult,
|
2014-06-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2014-08-31 21:08:04 -04:00
|
|
|
explicit SVGMetadataElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2013-01-04 20:50:21 -05:00
|
|
|
|
2014-04-08 18:27:17 -04:00
|
|
|
virtual JSObject* WrapNode(JSContext *aCx) MOZ_OVERRIDE;
|
2013-01-04 20:50:21 -05:00
|
|
|
nsresult Init();
|
|
|
|
|
|
|
|
public:
|
2014-06-19 19:01:40 -07:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const MOZ_OVERRIDE;
|
2013-01-04 20:50:21 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGMetadataElement_h
|