| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 return clip_path_units_.Get(); | 40 return clip_path_units_.Get(); |
| 41 } | 41 } |
| 42 | 42 |
| 43 bool SupportsFocus() const override { return false; } | 43 bool SupportsFocus() const override { return false; } |
| 44 | 44 |
| 45 DECLARE_VIRTUAL_TRACE(); | 45 DECLARE_VIRTUAL_TRACE(); |
| 46 | 46 |
| 47 private: | 47 private: |
| 48 explicit SVGClipPathElement(Document&); | 48 explicit SVGClipPathElement(Document&); |
| 49 | 49 |
| 50 bool NeedsPendingResourceHandling() const override { return false; } | |
| 51 | |
| 52 void SvgAttributeChanged(const QualifiedName&) override; | 50 void SvgAttributeChanged(const QualifiedName&) override; |
| 53 void ChildrenChanged(const ChildrenChange&) override; | 51 void ChildrenChanged(const ChildrenChange&) override; |
| 54 | 52 |
| 55 LayoutObject* CreateLayoutObject(const ComputedStyle&) override; | 53 LayoutObject* CreateLayoutObject(const ComputedStyle&) override; |
| 56 | 54 |
| 57 Member<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>> clip_path_units_; | 55 Member<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>> clip_path_units_; |
| 58 }; | 56 }; |
| 59 | 57 |
| 60 } // namespace blink | 58 } // namespace blink |
| 61 | 59 |
| 62 #endif // SVGClipPathElement_h | 60 #endif // SVGClipPathElement_h |
| OLD | NEW |