| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005 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 13 matching lines...) Expand all Loading... |
| 24 #include "core/svg/SVGAnimatedBoolean.h" | 24 #include "core/svg/SVGAnimatedBoolean.h" |
| 25 #include "core/svg/SVGGraphicsElement.h" | 25 #include "core/svg/SVGGraphicsElement.h" |
| 26 | 26 |
| 27 namespace blink { | 27 namespace blink { |
| 28 | 28 |
| 29 class SVGDefsElement final : public SVGGraphicsElement { | 29 class SVGDefsElement final : public SVGGraphicsElement { |
| 30 DEFINE_WRAPPERTYPEINFO(); | 30 DEFINE_WRAPPERTYPEINFO(); |
| 31 public: | 31 public: |
| 32 DECLARE_NODE_FACTORY(SVGDefsElement); | 32 DECLARE_NODE_FACTORY(SVGDefsElement); |
| 33 | 33 |
| 34 virtual bool supportsFocus() const override { return false; } | 34 bool supportsFocus() const override { return false; } |
| 35 | 35 |
| 36 private: | 36 private: |
| 37 explicit SVGDefsElement(Document&); | 37 explicit SVGDefsElement(Document&); |
| 38 | 38 |
| 39 virtual LayoutObject* createLayoutObject(const ComputedStyle&) override; | 39 LayoutObject* createLayoutObject(const ComputedStyle&) override; |
| 40 }; | 40 }; |
| 41 | 41 |
| 42 } // namespace blink | 42 } // namespace blink |
| 43 | 43 |
| 44 #endif // SVGDefsElement_h | 44 #endif // SVGDefsElement_h |
| OLD | NEW |