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

/*
 * Copyright (C) 2006 Apple Inc. All rights reserved.
 * Copyright (C) 2006 Nikolas Zimmermann <[email protected]>
 * Copyright (C) 2007 Rob Buis <[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_document_extensions.h"

#include "base/auto_reset.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/svg/animation/smil_time_container.h"
#include "third_party/blink/renderer/core/svg/svg_svg_element.h"

namespace blink {

SVGDocumentExtensions::SVGDocumentExtensions(Document* document)
    :{}

SVGDocumentExtensions::~SVGDocumentExtensions() = default;

void SVGDocumentExtensions::AddTimeContainer(SVGSVGElement* element) {}

void SVGDocumentExtensions::RemoveTimeContainer(SVGSVGElement* element) {}

void SVGDocumentExtensions::AddWebAnimationsPendingSVGElement(
    SVGElement& element) {}

bool SVGDocumentExtensions::ServiceSmilOnAnimationFrame(Document& document) {}

void SVGDocumentExtensions::ServiceWebAnimationsOnAnimationFrame(
    Document& document) {}

bool SVGDocumentExtensions::ServiceSmilAnimations() {}

void SVGDocumentExtensions::ServiceWebAnimations() {}

void SVGDocumentExtensions::StartAnimations() {}

void SVGDocumentExtensions::PauseAnimations() {}

bool SVGDocumentExtensions::HasSmilAnimations() const {}

void SVGDocumentExtensions::DispatchSVGLoadEventToOutermostSVGElements() {}

void SVGDocumentExtensions::AddSVGRootWithRelativeLengthDescendents(
    SVGSVGElement* svg_root) {}

void SVGDocumentExtensions::RemoveSVGRootWithRelativeLengthDescendents(
    SVGSVGElement* svg_root) {}

void SVGDocumentExtensions::InvalidateSVGRootsWithRelativeLengthDescendents() {}

bool SVGDocumentExtensions::ZoomAndPanEnabled() const {}

void SVGDocumentExtensions::StartPan(const gfx::PointF& start) {}

void SVGDocumentExtensions::UpdatePan(const gfx::PointF& pos) const {}

SVGSVGElement* SVGDocumentExtensions::rootElement(const Document& document) {}

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

}  // namespace blink