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

/*
 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <[email protected]>
 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Rob Buis <[email protected]>
 * Copyright (C) 2006 Alexander Kellett <[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_image_element.h"

#include "third_party/blink/renderer/core/css/css_property_names.h"
#include "third_party/blink/renderer/core/css/style_change_reason.h"
#include "third_party/blink/renderer/core/frame/web_feature.h"
#include "third_party/blink/renderer/core/html/cross_origin_attribute.h"
#include "third_party/blink/renderer/core/layout/layout_image_resource.h"
#include "third_party/blink/renderer/core/layout/svg/layout_svg_image.h"
#include "third_party/blink/renderer/core/svg/svg_animated_length.h"
#include "third_party/blink/renderer/core/svg/svg_animated_preserve_aspect_ratio.h"
#include "third_party/blink/renderer/core/svg_names.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/instrumentation/use_counter.h"

namespace blink {

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

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

bool SVGImageElement::CurrentFrameHasSingleSecurityOrigin() const {}

ScriptPromise<IDLUndefined> SVGImageElement::decode(
    ScriptState* script_state,
    ExceptionState& exception_state) {}

void SVGImageElement::CollectStyleForPresentationAttribute(
    const QualifiedName& name,
    const AtomicString& value,
    MutableCSSPropertyValueSet* style) {}

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

void SVGImageElement::ParseAttribute(
    const AttributeModificationParams& params) {}

bool SVGImageElement::SelfHasRelativeLengths() const {}

LayoutObject* SVGImageElement::CreateLayoutObject(const ComputedStyle&) {}

bool SVGImageElement::HaveLoadedRequiredResources() {}

void SVGImageElement::AttachLayoutTree(AttachContext& context) {}

const AtomicString SVGImageElement::ImageSourceURL() const {}

void SVGImageElement::DidMoveToNewDocument(Document& old_document) {}

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

void SVGImageElement::SynchronizeAllSVGAttributes() const {}

void SVGImageElement::CollectExtraStyleForPresentationAttribute(
    MutableCSSPropertyValueSet* style) {}

}  // namespace blink