2013-01-06 09:32:01 +00: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_SVGPolylineElement_h
|
|
|
|
#define mozilla_dom_SVGPolylineElement_h
|
|
|
|
|
|
|
|
#include "nsSVGPolyElement.h"
|
|
|
|
|
|
|
|
nsresult NS_NewSVGPolylineElement(nsIContent **aResult,
|
2014-06-20 02:01:40 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-01-06 09:32:01 +00:00
|
|
|
|
|
|
|
typedef nsSVGPolyElement SVGPolylineElementBase;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-03-28 01:23:09 +00:00
|
|
|
class SVGPolylineElement MOZ_FINAL : public SVGPolylineElementBase
|
2013-01-06 09:32:01 +00:00
|
|
|
{
|
|
|
|
protected:
|
2014-09-01 01:08:04 +00:00
|
|
|
explicit SVGPolylineElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2014-04-08 22:27:17 +00:00
|
|
|
virtual JSObject* WrapNode(JSContext *cx) MOZ_OVERRIDE;
|
2013-01-06 09:32:01 +00:00
|
|
|
friend nsresult (::NS_NewSVGPolylineElement(nsIContent **aResult,
|
2014-06-20 02:01:40 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2013-01-06 09:32:01 +00:00
|
|
|
|
2014-10-22 09:48:37 +00:00
|
|
|
// nsSVGPathGeometryElement methods:
|
|
|
|
virtual mozilla::TemporaryRef<Path> BuildPath(PathBuilder* aBuilder) MOZ_OVERRIDE;
|
|
|
|
|
2013-01-06 09:32:01 +00:00
|
|
|
public:
|
|
|
|
// nsIContent interface
|
2015-01-02 06:13:59 +00:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const MOZ_OVERRIDE;
|
2013-01-06 09:32:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
} // namespace dom
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGPolylineElement_h
|