2015-05-03 22:32:37 +03: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: */
|
2013-05-09 21:42:12 +04: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/. */
|
|
|
|
|
|
|
|
#include "SVGAnimatedRect.h"
|
|
|
|
#include "mozilla/dom/SVGAnimatedRectBinding.h"
|
2019-04-04 20:40:56 +03:00
|
|
|
#include "mozilla/dom/SVGElement.h"
|
2019-06-20 17:03:54 +03:00
|
|
|
#include "mozilla/dom/SVGRect.h"
|
2019-04-04 20:40:56 +03:00
|
|
|
#include "SVGAnimatedViewBox.h"
|
2013-05-09 21:42:12 +04:00
|
|
|
|
2022-05-09 23:41:16 +03:00
|
|
|
namespace mozilla::dom {
|
2013-05-09 21:42:12 +04:00
|
|
|
|
|
|
|
NS_SVG_VAL_IMPL_CYCLE_COLLECTION_WRAPPERCACHED(SVGAnimatedRect, mSVGElement)
|
|
|
|
|
2013-07-23 12:34:17 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_ROOT_NATIVE(SVGAnimatedRect, AddRef)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNROOT_NATIVE(SVGAnimatedRect, Release)
|
2013-05-09 21:42:12 +04:00
|
|
|
|
2019-04-04 20:40:56 +03:00
|
|
|
SVGAnimatedRect::SVGAnimatedRect(SVGAnimatedViewBox* aVal,
|
|
|
|
SVGElement* aSVGElement)
|
2013-05-09 21:42:12 +04:00
|
|
|
: mVal(aVal), mSVGElement(aSVGElement) {}
|
|
|
|
|
|
|
|
SVGAnimatedRect::~SVGAnimatedRect() {
|
2019-04-04 20:40:56 +03:00
|
|
|
SVGAnimatedViewBox::sSVGAnimatedRectTearoffTable.RemoveTearoff(mVal);
|
2013-05-09 21:42:12 +04:00
|
|
|
}
|
|
|
|
|
2019-06-20 17:03:54 +03:00
|
|
|
already_AddRefed<SVGRect> SVGAnimatedRect::GetBaseVal() {
|
2013-05-20 15:46:12 +04:00
|
|
|
return mVal->ToDOMBaseVal(mSVGElement);
|
2013-05-09 21:42:12 +04:00
|
|
|
}
|
|
|
|
|
2019-06-20 17:03:54 +03:00
|
|
|
already_AddRefed<SVGRect> SVGAnimatedRect::GetAnimVal() {
|
2013-05-20 15:46:12 +04:00
|
|
|
return mVal->ToDOMAnimVal(mSVGElement);
|
2013-05-09 21:42:12 +04:00
|
|
|
}
|
|
|
|
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
JSObject* SVGAnimatedRect::WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) {
|
2018-06-26 00:20:54 +03:00
|
|
|
return SVGAnimatedRect_Binding::Wrap(aCx, this, aGivenProto);
|
2013-05-09 21:42:12 +04:00
|
|
|
}
|
|
|
|
|
2022-05-09 23:41:16 +03:00
|
|
|
} // namespace mozilla::dom
|