| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2005 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2005 Eric Seidel <eric@webkit.org> |
| 5 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> | 5 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> |
| 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 | 52 |
| 53 class RenderSVGResourceFilter final : public RenderSVGResourceContainer { | 53 class RenderSVGResourceFilter final : public RenderSVGResourceContainer { |
| 54 public: | 54 public: |
| 55 explicit RenderSVGResourceFilter(SVGFilterElement*); | 55 explicit RenderSVGResourceFilter(SVGFilterElement*); |
| 56 virtual ~RenderSVGResourceFilter(); | 56 virtual ~RenderSVGResourceFilter(); |
| 57 virtual void destroy() override; | 57 virtual void destroy() override; |
| 58 | 58 |
| 59 virtual bool isChildAllowed(RenderObject*, RenderStyle*) const override; | 59 virtual bool isChildAllowed(RenderObject*, RenderStyle*) const override; |
| 60 | 60 |
| 61 virtual const char* renderName() const override { return "RenderSVGResourceF
ilter"; } | 61 virtual const char* renderName() const override { return "RenderSVGResourceF
ilter"; } |
| 62 virtual bool isSVGResourceFilter() const override { return true; } | 62 virtual bool isOfType(RenderObjectType type) const override { return type ==
RenderObjectSVGResourceFilter || RenderSVGResourceContainer::isOfType(type); } |
| 63 | 63 |
| 64 virtual void removeAllClientsFromCache(bool markForInvalidation = true) over
ride; | 64 virtual void removeAllClientsFromCache(bool markForInvalidation = true) over
ride; |
| 65 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation =
true) override; | 65 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation =
true) override; |
| 66 | 66 |
| 67 bool prepareEffect(RenderObject*, RenderStyle*, GraphicsContext*&); | 67 bool prepareEffect(RenderObject*, RenderStyle*, GraphicsContext*&); |
| 68 void finishEffect(RenderObject*, GraphicsContext*&); | 68 void finishEffect(RenderObject*, GraphicsContext*&); |
| 69 | 69 |
| 70 FloatRect resourceBoundingBox(const RenderObject*); | 70 FloatRect resourceBoundingBox(const RenderObject*); |
| 71 | 71 |
| 72 PassRefPtr<SVGFilterBuilder> buildPrimitives(SVGFilter*); | 72 PassRefPtr<SVGFilterBuilder> buildPrimitives(SVGFilter*); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 83 private: | 83 private: |
| 84 typedef HashMap<RenderObject*, OwnPtr<FilterData> > FilterMap; | 84 typedef HashMap<RenderObject*, OwnPtr<FilterData> > FilterMap; |
| 85 FilterMap m_filter; | 85 FilterMap m_filter; |
| 86 }; | 86 }; |
| 87 | 87 |
| 88 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGResourceFilter, isSVGResourceFilter()); | 88 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGResourceFilter, isSVGResourceFilter()); |
| 89 | 89 |
| 90 } | 90 } |
| 91 | 91 |
| 92 #endif | 92 #endif |
| OLD | NEW |