| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007 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, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #ifndef SVGUseElement_h | 21 #ifndef SVGUseElement_h |
| 22 #define SVGUseElement_h | 22 #define SVGUseElement_h |
| 23 | 23 |
| 24 #if ENABLE(SVG) | 24 #if ENABLE(SVG) |
| 25 #include "CachedSVGDocument.h" | |
| 26 #include "SVGAnimatedBoolean.h" | 25 #include "SVGAnimatedBoolean.h" |
| 27 #include "SVGAnimatedLength.h" | 26 #include "SVGAnimatedLength.h" |
| 28 #include "SVGExternalResourcesRequired.h" | 27 #include "SVGExternalResourcesRequired.h" |
| 29 #include "SVGLangSpace.h" | 28 #include "SVGLangSpace.h" |
| 30 #include "SVGStyledTransformableElement.h" | 29 #include "SVGStyledTransformableElement.h" |
| 31 #include "SVGTests.h" | 30 #include "SVGTests.h" |
| 32 #include "SVGURIReference.h" | 31 #include "SVGURIReference.h" |
| 32 #include "core/loader/cache/CachedSVGDocument.h" |
| 33 | 33 |
| 34 namespace WebCore { | 34 namespace WebCore { |
| 35 | 35 |
| 36 class CachedSVGDocument; | 36 class CachedSVGDocument; |
| 37 class SVGElementInstance; | 37 class SVGElementInstance; |
| 38 | 38 |
| 39 class SVGUseElement : public SVGStyledTransformableElement, | 39 class SVGUseElement : public SVGStyledTransformableElement, |
| 40 public SVGTests, | 40 public SVGTests, |
| 41 public SVGLangSpace, | 41 public SVGLangSpace, |
| 42 public SVGExternalResourcesRequired, | 42 public SVGExternalResourcesRequired, |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 bool m_needsShadowTreeRecreation; | 131 bool m_needsShadowTreeRecreation; |
| 132 RefPtr<SVGElementInstance> m_targetElementInstance; | 132 RefPtr<SVGElementInstance> m_targetElementInstance; |
| 133 CachedResourceHandle<CachedSVGDocument> m_cachedDocument; | 133 CachedResourceHandle<CachedSVGDocument> m_cachedDocument; |
| 134 Timer<SVGElement> m_svgLoadEventTimer; | 134 Timer<SVGElement> m_svgLoadEventTimer; |
| 135 }; | 135 }; |
| 136 | 136 |
| 137 } | 137 } |
| 138 | 138 |
| 139 #endif | 139 #endif |
| 140 #endif | 140 #endif |
| OLD | NEW |