chromium/third_party/blink/renderer/core/svg/svg_fe_convolve_matrix_element.cc

/*
 * Copyright (C) 2009 Dirk Schulze <[email protected]>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public License
 * along with this library; see the file COPYING.LIB.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#include "third_party/blink/renderer/core/svg/svg_fe_convolve_matrix_element.h"

#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/svg/graphics/filters/svg_filter_builder.h"
#include "third_party/blink/renderer/core/svg/svg_animated_boolean.h"
#include "third_party/blink/renderer/core/svg/svg_animated_integer.h"
#include "third_party/blink/renderer/core/svg/svg_animated_integer_optional_integer.h"
#include "third_party/blink/renderer/core/svg/svg_animated_number.h"
#include "third_party/blink/renderer/core/svg/svg_animated_number_list.h"
#include "third_party/blink/renderer/core/svg/svg_animated_number_optional_number.h"
#include "third_party/blink/renderer/core/svg/svg_animated_string.h"
#include "third_party/blink/renderer/core/svg/svg_enumeration_map.h"
#include "third_party/blink/renderer/core/svg_names.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "ui/gfx/geometry/point.h"
#include "ui/gfx/geometry/size.h"

namespace blink {

template <>
CORE_EXPORT const SVGEnumerationMap&
GetEnumerationMap<FEConvolveMatrix::EdgeModeType>() {}

class SVGAnimatedOrder : public SVGAnimatedIntegerOptionalInteger {};

SVGParsingError SVGAnimatedOrder::AttributeChanged(const String& value) {}

SVGFEConvolveMatrixElement::SVGFEConvolveMatrixElement(Document& document)
    :{}

SVGAnimatedNumber* SVGFEConvolveMatrixElement::kernelUnitLengthX() {}

SVGAnimatedNumber* SVGFEConvolveMatrixElement::kernelUnitLengthY() {}

SVGAnimatedInteger* SVGFEConvolveMatrixElement::orderX() const {}

SVGAnimatedInteger* SVGFEConvolveMatrixElement::orderY() const {}

void SVGFEConvolveMatrixElement::Trace(Visitor* visitor) const {}

gfx::Size SVGFEConvolveMatrixElement::MatrixOrder() const {}

gfx::Point SVGFEConvolveMatrixElement::TargetPoint() const {}

float SVGFEConvolveMatrixElement::ComputeDivisor() const {}

bool SVGFEConvolveMatrixElement::SetFilterEffectAttribute(
    FilterEffect* effect,
    const QualifiedName& attr_name) {}

void SVGFEConvolveMatrixElement::SvgAttributeChanged(
    const SvgAttributeChangedParams& params) {}

FilterEffect* SVGFEConvolveMatrixElement::Build(
    SVGFilterBuilder* filter_builder,
    Filter* filter) {}

SVGAnimatedPropertyBase* SVGFEConvolveMatrixElement::PropertyFromAttribute(
    const QualifiedName& attribute_name) const {}

void SVGFEConvolveMatrixElement::SynchronizeAllSVGAttributes() const {}

}  // namespace blink