| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 3 * Copyright (C) 2006, 2008 Nikolas Zimmermann <zimmermann@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 20 matching lines...) Expand all Loading... |
| 31 namespace WebCore { | 31 namespace WebCore { |
| 32 | 32 |
| 33 class Document; | 33 class Document; |
| 34 class RenderSVGResourceContainer; | 34 class RenderSVGResourceContainer; |
| 35 class SubtreeLayoutScope; | 35 class SubtreeLayoutScope; |
| 36 class SVGElement; | 36 class SVGElement; |
| 37 #if ENABLE(SVG_FONTS) | 37 #if ENABLE(SVG_FONTS) |
| 38 class SVGFontFaceElement; | 38 class SVGFontFaceElement; |
| 39 #endif | 39 #endif |
| 40 class SVGResourcesCache; | 40 class SVGResourcesCache; |
| 41 class SVGSMILElement; | |
| 42 class SVGSVGElement; | 41 class SVGSVGElement; |
| 43 class Element; | 42 class Element; |
| 44 | 43 |
| 45 typedef WillBeHeapHashSet<RawPtrWillBeMember<SVGElement> > SVGElementSet; | 44 typedef WillBeHeapHashSet<RawPtrWillBeMember<SVGElement> > SVGElementSet; |
| 46 | 45 |
| 47 class SVGDocumentExtensions : public NoBaseWillBeGarbageCollectedFinalized<SVGDo
cumentExtensions> { | 46 class SVGDocumentExtensions : public NoBaseWillBeGarbageCollectedFinalized<SVGDo
cumentExtensions> { |
| 48 WTF_MAKE_NONCOPYABLE(SVGDocumentExtensions); WTF_MAKE_FAST_ALLOCATED_WILL_BE
_REMOVED; | 47 WTF_MAKE_NONCOPYABLE(SVGDocumentExtensions); WTF_MAKE_FAST_ALLOCATED_WILL_BE
_REMOVED; |
| 49 public: | 48 public: |
| 50 typedef HashSet<Element*> SVGPendingElements; | 49 typedef HashSet<Element*> SVGPendingElements; |
| 51 explicit SVGDocumentExtensions(Document*); | 50 explicit SVGDocumentExtensions(Document*); |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 void markPendingResourcesForRemoval(const AtomicString&); | 136 void markPendingResourcesForRemoval(const AtomicString&); |
| 138 Element* removeElementFromPendingResourcesForRemoval(const AtomicString&); | 137 Element* removeElementFromPendingResourcesForRemoval(const AtomicString&); |
| 139 | 138 |
| 140 private: | 139 private: |
| 141 PassOwnPtr<SVGPendingElements> removePendingResourceForRemoval(const AtomicS
tring&); | 140 PassOwnPtr<SVGPendingElements> removePendingResourceForRemoval(const AtomicS
tring&); |
| 142 }; | 141 }; |
| 143 | 142 |
| 144 } | 143 } |
| 145 | 144 |
| 146 #endif | 145 #endif |
| OLD | NEW |