| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006, 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 17 matching lines...) Expand all Loading... |
| 28 #include "core/svg/SVGElement.h" | 28 #include "core/svg/SVGElement.h" |
| 29 #include "core/svg/SVGTests.h" | 29 #include "core/svg/SVGTests.h" |
| 30 #include "core/svg/SVGURIReference.h" | 30 #include "core/svg/SVGURIReference.h" |
| 31 | 31 |
| 32 namespace WebCore { | 32 namespace WebCore { |
| 33 | 33 |
| 34 class SVGCursorElement FINAL : public SVGElement, | 34 class SVGCursorElement FINAL : public SVGElement, |
| 35 public SVGTests, | 35 public SVGTests, |
| 36 public SVGURIReference { | 36 public SVGURIReference { |
| 37 public: | 37 public: |
| 38 DEFINE_NODE_FACTORY(SVGCursorElement); | 38 DECLARE_NODE_FACTORY(SVGCursorElement); |
| 39 | 39 |
| 40 virtual ~SVGCursorElement(); | 40 virtual ~SVGCursorElement(); |
| 41 | 41 |
| 42 void addClient(SVGElement*); | 42 void addClient(SVGElement*); |
| 43 #if !ENABLE(OILPAN) | 43 #if !ENABLE(OILPAN) |
| 44 void removeClient(SVGElement*); | 44 void removeClient(SVGElement*); |
| 45 #endif | 45 #endif |
| 46 void removeReferencedElement(SVGElement*); | 46 void removeReferencedElement(SVGElement*); |
| 47 | 47 |
| 48 SVGAnimatedLength* x() const { return m_x.get(); } | 48 SVGAnimatedLength* x() const { return m_x.get(); } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 63 | 63 |
| 64 RefPtr<SVGAnimatedLength> m_x; | 64 RefPtr<SVGAnimatedLength> m_x; |
| 65 RefPtr<SVGAnimatedLength> m_y; | 65 RefPtr<SVGAnimatedLength> m_y; |
| 66 | 66 |
| 67 WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> > m_clients; | 67 WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement> > m_clients; |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 } // namespace WebCore | 70 } // namespace WebCore |
| 71 | 71 |
| 72 #endif | 72 #endif |
| OLD | NEW |