| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 void addResource(const AtomicString& id, LayoutSVGResourceContainer*); | 54 void addResource(const AtomicString& id, LayoutSVGResourceContainer*); |
| 55 void removeResource(const AtomicString& id); | 55 void removeResource(const AtomicString& id); |
| 56 LayoutSVGResourceContainer* resourceById(const AtomicString& id) const; | 56 LayoutSVGResourceContainer* resourceById(const AtomicString& id) const; |
| 57 | 57 |
| 58 static void serviceOnAnimationFrame(Document&, double monotonicAnimationStar
tTime); | 58 static void serviceOnAnimationFrame(Document&, double monotonicAnimationStar
tTime); |
| 59 | 59 |
| 60 void startAnimations(); | 60 void startAnimations(); |
| 61 void pauseAnimations(); | 61 void pauseAnimations(); |
| 62 void dispatchSVGLoadEventToOutermostSVGElements(); | 62 void dispatchSVGLoadEventToOutermostSVGElements(); |
| 63 | 63 |
| 64 void reportWarning(const String&); | |
| 65 void reportError(const String&); | 64 void reportError(const String&); |
| 66 | 65 |
| 67 SVGResourcesCache& resourcesCache() { return m_resourcesCache; } | 66 SVGResourcesCache& resourcesCache() { return m_resourcesCache; } |
| 68 | 67 |
| 69 void addSVGRootWithRelativeLengthDescendents(SVGSVGElement*); | 68 void addSVGRootWithRelativeLengthDescendents(SVGSVGElement*); |
| 70 void removeSVGRootWithRelativeLengthDescendents(SVGSVGElement*); | 69 void removeSVGRootWithRelativeLengthDescendents(SVGSVGElement*); |
| 71 bool isSVGRootWithRelativeLengthDescendents(SVGSVGElement*) const; | 70 bool isSVGRootWithRelativeLengthDescendents(SVGSVGElement*) const; |
| 72 void invalidateSVGRootsWithRelativeLengthDescendents(SubtreeLayoutScope*); | 71 void invalidateSVGRootsWithRelativeLengthDescendents(SubtreeLayoutScope*); |
| 73 | 72 |
| 74 bool zoomAndPanEnabled() const; | 73 bool zoomAndPanEnabled() const; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 void markPendingResourcesForRemoval(const AtomicString&); | 113 void markPendingResourcesForRemoval(const AtomicString&); |
| 115 Element* removeElementFromPendingResourcesForRemoval(const AtomicString&); | 114 Element* removeElementFromPendingResourcesForRemoval(const AtomicString&); |
| 116 | 115 |
| 117 private: | 116 private: |
| 118 PassOwnPtrWillBeRawPtr<SVGPendingElements> removePendingResourceForRemoval(c
onst AtomicString&); | 117 PassOwnPtrWillBeRawPtr<SVGPendingElements> removePendingResourceForRemoval(c
onst AtomicString&); |
| 119 }; | 118 }; |
| 120 | 119 |
| 121 } | 120 } |
| 122 | 121 |
| 123 #endif | 122 #endif |
| OLD | NEW |