| Index: third_party/WebKit/Source/core/svg/SVGCursorElement.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGCursorElement.h b/third_party/WebKit/Source/core/svg/SVGCursorElement.h
|
| deleted file mode 100644
|
| index 1074f519129930bb5a52be4a9fbc2b78a56ade78..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/Source/core/svg/SVGCursorElement.h
|
| +++ /dev/null
|
| @@ -1,69 +0,0 @@
|
| -/*
|
| - * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org>
|
| - * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org>
|
| - *
|
| - * 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.
|
| - */
|
| -
|
| -#ifndef SVGCursorElement_h
|
| -#define SVGCursorElement_h
|
| -
|
| -#include "core/SVGNames.h"
|
| -#include "core/svg/SVGAnimatedLength.h"
|
| -#include "core/svg/SVGElement.h"
|
| -#include "core/svg/SVGTests.h"
|
| -#include "core/svg/SVGURIReference.h"
|
| -#include "platform/heap/Handle.h"
|
| -
|
| -namespace blink {
|
| -
|
| -class SVGCursorElement final : public SVGElement,
|
| - public SVGTests,
|
| - public SVGURIReference {
|
| - DEFINE_WRAPPERTYPEINFO();
|
| - USING_GARBAGE_COLLECTED_MIXIN(SVGCursorElement);
|
| -
|
| - public:
|
| - DECLARE_NODE_FACTORY(SVGCursorElement);
|
| -
|
| - ~SVGCursorElement() override;
|
| -
|
| - void addClient(SVGElement*);
|
| - void removeReferencedElement(SVGElement*);
|
| -
|
| - SVGAnimatedLength* x() const { return m_x.get(); }
|
| - SVGAnimatedLength* y() const { return m_y.get(); }
|
| -
|
| - DECLARE_VIRTUAL_TRACE();
|
| -
|
| - private:
|
| - explicit SVGCursorElement(Document&);
|
| -
|
| - bool isValid() const override { return SVGTests::isValid(); }
|
| -
|
| - void svgAttributeChanged(const QualifiedName&) override;
|
| -
|
| - bool layoutObjectIsNeeded(const ComputedStyle&) override { return false; }
|
| -
|
| - Member<SVGAnimatedLength> m_x;
|
| - Member<SVGAnimatedLength> m_y;
|
| -
|
| - HeapHashSet<WeakMember<SVGElement>> m_clients;
|
| -};
|
| -
|
| -} // namespace blink
|
| -
|
| -#endif // SVGCursorElement_h
|
|
|