| 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 15 matching lines...) Expand all Loading... |
| 26 #include "wtf/Forward.h" | 26 #include "wtf/Forward.h" |
| 27 #include "wtf/HashMap.h" | 27 #include "wtf/HashMap.h" |
| 28 #include "wtf/HashSet.h" | 28 #include "wtf/HashSet.h" |
| 29 #include "wtf/text/AtomicStringHash.h" | 29 #include "wtf/text/AtomicStringHash.h" |
| 30 | 30 |
| 31 namespace blink { | 31 namespace blink { |
| 32 | 32 |
| 33 class Document; | 33 class Document; |
| 34 class RenderSVGResourceContainer; | 34 class RenderSVGResourceContainer; |
| 35 class SubtreeLayoutScope; | 35 class SubtreeLayoutScope; |
| 36 class SVGElement; | |
| 37 #if ENABLE(SVG_FONTS) | 36 #if ENABLE(SVG_FONTS) |
| 38 class SVGFontFaceElement; | 37 class SVGFontFaceElement; |
| 39 #endif | 38 #endif |
| 40 class SVGResourcesCache; | 39 class SVGResourcesCache; |
| 41 class SVGSVGElement; | 40 class SVGSVGElement; |
| 42 class Element; | 41 class Element; |
| 43 | 42 |
| 44 class SVGDocumentExtensions : public NoBaseWillBeGarbageCollectedFinalized<SVGDo
cumentExtensions> { | 43 class SVGDocumentExtensions : public NoBaseWillBeGarbageCollectedFinalized<SVGDo
cumentExtensions> { |
| 45 WTF_MAKE_NONCOPYABLE(SVGDocumentExtensions); WTF_MAKE_FAST_ALLOCATED_WILL_BE
_REMOVED; | 44 WTF_MAKE_NONCOPYABLE(SVGDocumentExtensions); WTF_MAKE_FAST_ALLOCATED_WILL_BE
_REMOVED; |
| 46 public: | 45 public: |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 void markPendingResourcesForRemoval(const AtomicString&); | 125 void markPendingResourcesForRemoval(const AtomicString&); |
| 127 Element* removeElementFromPendingResourcesForRemoval(const AtomicString&); | 126 Element* removeElementFromPendingResourcesForRemoval(const AtomicString&); |
| 128 | 127 |
| 129 private: | 128 private: |
| 130 PassOwnPtrWillBeRawPtr<SVGPendingElements> removePendingResourceForRemoval(c
onst AtomicString&); | 129 PassOwnPtrWillBeRawPtr<SVGPendingElements> removePendingResourceForRemoval(c
onst AtomicString&); |
| 131 }; | 130 }; |
| 132 | 131 |
| 133 } | 132 } |
| 134 | 133 |
| 135 #endif | 134 #endif |
| OLD | NEW |