| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2007 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 23 matching lines...) Expand all Loading... |
| 34 DEFINE_WRAPPERTYPEINFO(); | 34 DEFINE_WRAPPERTYPEINFO(); |
| 35 USING_GARBAGE_COLLECTED_MIXIN(SVGViewElement); | 35 USING_GARBAGE_COLLECTED_MIXIN(SVGViewElement); |
| 36 | 36 |
| 37 public: | 37 public: |
| 38 DECLARE_NODE_FACTORY(SVGViewElement); | 38 DECLARE_NODE_FACTORY(SVGViewElement); |
| 39 DECLARE_VIRTUAL_TRACE(); | 39 DECLARE_VIRTUAL_TRACE(); |
| 40 | 40 |
| 41 private: | 41 private: |
| 42 explicit SVGViewElement(Document&); | 42 explicit SVGViewElement(Document&); |
| 43 | 43 |
| 44 void parseAttribute(const QualifiedName&, | 44 void parseAttribute(const AttributeModificationParams&) override; |
| 45 const AtomicString&, | |
| 46 const AtomicString&) override; | |
| 47 | 45 |
| 48 bool layoutObjectIsNeeded(const ComputedStyle&) override { return false; } | 46 bool layoutObjectIsNeeded(const ComputedStyle&) override { return false; } |
| 49 }; | 47 }; |
| 50 | 48 |
| 51 } // namespace blink | 49 } // namespace blink |
| 52 | 50 |
| 53 #endif // SVGViewElement_h | 51 #endif // SVGViewElement_h |
| OLD | NEW |