Index: Source/core/svg/graphics/filters/SVGFilter.h |
diff --git a/Source/core/svg/graphics/filters/SVGFilter.h b/Source/core/svg/graphics/filters/SVGFilter.h |
deleted file mode 100644 |
index c19879a3d46247a55659fb6929a9b5716e5ec717..0000000000000000000000000000000000000000 |
--- a/Source/core/svg/graphics/filters/SVGFilter.h |
+++ /dev/null |
@@ -1,49 +0,0 @@ |
-/* |
- * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> |
- * Copyright (C) 2013 Google Inc. All rights reserved. |
- * |
- * 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 SVGFilter_h |
-#define SVGFilter_h |
- |
-#include "platform/geometry/FloatRect.h" |
-#include "platform/graphics/filters/Filter.h" |
-#include "platform/graphics/filters/FilterEffect.h" |
-#include "wtf/PassRefPtr.h" |
-#include "wtf/RefCounted.h" |
-#include "wtf/RefPtr.h" |
- |
-namespace blink { |
- |
-class SVGFilter final : public Filter { |
-public: |
- static PassRefPtrWillBeRawPtr<SVGFilter> create(const FloatRect&, const FloatRect&, bool); |
- |
- float applyHorizontalScale(float value) const override; |
- float applyVerticalScale(float value) const override; |
- FloatPoint3D resolve3dPoint(const FloatPoint3D&) const override; |
- |
-private: |
- SVGFilter(const FloatRect& referenceBox, const FloatRect& filterRegion, bool effectBBoxMode); |
- |
- bool m_effectBBoxMode; |
-}; |
- |
-} // namespace blink |
- |
-#endif // SVGFilter_h |