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: */
|
2013-03-07 09:15:21 +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/. */
|
|
|
|
|
|
|
|
#include "mozilla/dom/SVGFEMergeElement.h"
|
|
|
|
#include "mozilla/dom/SVGFEMergeElementBinding.h"
|
2013-03-07 09:15:22 +00:00
|
|
|
#include "mozilla/dom/SVGFEMergeNodeElement.h"
|
2013-03-07 09:15:21 +00:00
|
|
|
|
2018-12-21 11:43:29 +00:00
|
|
|
NS_IMPL_NS_NEW_SVG_ELEMENT(FEMerge)
|
2013-03-07 09:15:21 +00:00
|
|
|
|
2013-11-27 11:25:29 +00:00
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
2013-03-07 09:15:21 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
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 14:13:33 +00:00
|
|
|
JSObject* SVGFEMergeElement::WrapNode(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) {
|
2018-06-25 21:20:54 +00:00
|
|
|
return SVGFEMergeElement_Binding::Wrap(aCx, this, aGivenProto);
|
2013-03-07 09:15:21 +00:00
|
|
|
}
|
|
|
|
|
2018-12-21 08:58:14 +00:00
|
|
|
SVGElement::StringInfo SVGFEMergeElement::sStringInfo[1] = {
|
2018-03-29 09:45:24 +00:00
|
|
|
{nsGkAtoms::result, kNameSpaceID_None, true}};
|
2013-03-07 09:15:21 +00:00
|
|
|
|
|
|
|
NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGFEMergeElement)
|
|
|
|
|
2013-11-27 11:25:29 +00:00
|
|
|
FilterPrimitiveDescription SVGFEMergeElement::GetPrimitiveDescription(
|
|
|
|
nsSVGFilterInstance* aInstance, const IntRect& aFilterSubregion,
|
2014-01-08 09:30:03 +00:00
|
|
|
const nsTArray<bool>& aInputsAreTainted,
|
2015-10-18 05:24:48 +00:00
|
|
|
nsTArray<RefPtr<SourceSurface>>& aInputImages) {
|
2018-09-19 17:18:44 +00:00
|
|
|
return FilterPrimitiveDescription(AsVariant(MergeAttributes()));
|
2013-03-07 09:15:21 +00:00
|
|
|
}
|
|
|
|
|
2018-12-21 16:24:17 +00:00
|
|
|
void SVGFEMergeElement::GetSourceImageNames(nsTArray<SVGStringInfo>& aSources) {
|
2013-03-07 09:15:21 +00:00
|
|
|
for (nsIContent* child = nsINode::GetFirstChild(); child;
|
|
|
|
child = child->GetNextSibling()) {
|
2015-03-03 11:08:59 +00:00
|
|
|
if (child->IsSVGElement(nsGkAtoms::feMergeNode)) {
|
2013-03-07 09:15:22 +00:00
|
|
|
SVGFEMergeNodeElement* node = static_cast<SVGFEMergeNodeElement*>(child);
|
2018-12-21 16:24:17 +00:00
|
|
|
aSources.AppendElement(SVGStringInfo(node->GetIn1(), node));
|
2013-03-07 09:15:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2018-12-21 08:58:14 +00:00
|
|
|
// SVGElement methods
|
2013-03-07 09:15:21 +00:00
|
|
|
|
2018-12-21 08:58:14 +00:00
|
|
|
SVGElement::StringAttributesInfo SVGFEMergeElement::GetStringInfo() {
|
2013-03-07 09:15:21 +00:00
|
|
|
return StringAttributesInfo(mStringAttributes, sStringInfo,
|
|
|
|
ArrayLength(sStringInfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|