2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-12-23 04:54:23 +00:00
|
|
|
/* 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/. */
|
|
|
|
|
2013-03-11 22:05:58 +00:00
|
|
|
#ifndef mozilla_dom_SVGAnimatedAngle_h
|
|
|
|
#define mozilla_dom_SVGAnimatedAngle_h
|
2012-12-23 04:54:23 +00:00
|
|
|
|
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
#include "nsSVGElement.h"
|
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
|
|
|
|
class nsSVGAngle;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-03-11 22:05:58 +00:00
|
|
|
class SVGAngle;
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class SVGAnimatedAngle final : public nsWrapperCache
|
2012-12-23 04:54:23 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-07-05 18:57:35 +00:00
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(SVGAnimatedAngle)
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(SVGAnimatedAngle)
|
2012-12-23 04:54:23 +00:00
|
|
|
|
|
|
|
SVGAnimatedAngle(nsSVGAngle* aVal, nsSVGElement *aSVGElement)
|
|
|
|
: mVal(aVal), mSVGElement(aSVGElement)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// WebIDL
|
|
|
|
nsSVGElement* GetParentObject() { return mSVGElement; }
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2012-12-23 04:54:23 +00:00
|
|
|
already_AddRefed<SVGAngle> BaseVal();
|
|
|
|
already_AddRefed<SVGAngle> AnimVal();
|
|
|
|
|
|
|
|
protected:
|
2014-06-24 16:36:45 +00:00
|
|
|
~SVGAnimatedAngle();
|
|
|
|
|
2012-12-23 04:54:23 +00:00
|
|
|
nsSVGAngle* mVal; // kept alive because it belongs to content
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsSVGElement> mSVGElement;
|
2012-12-23 04:54:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} //namespace dom
|
|
|
|
} //namespace mozilla
|
|
|
|
|
2013-03-11 22:05:58 +00:00
|
|
|
#endif // mozilla_dom_SVGAnimatedAngle_h
|