| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005 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 SVGFEImageElement_h | 21 #ifndef SVGFEImageElement_h |
| 22 #define SVGFEImageElement_h | 22 #define SVGFEImageElement_h |
| 23 | 23 |
| 24 #if ENABLE(SVG) | 24 #if ENABLE(SVG) |
| 25 #include "CachedImage.h" | |
| 26 #include "CachedResourceHandle.h" | |
| 27 #include "SVGAnimatedBoolean.h" | 25 #include "SVGAnimatedBoolean.h" |
| 28 #include "SVGAnimatedPreserveAspectRatio.h" | 26 #include "SVGAnimatedPreserveAspectRatio.h" |
| 29 #include "SVGExternalResourcesRequired.h" | 27 #include "SVGExternalResourcesRequired.h" |
| 30 #include "SVGFEImage.h" | 28 #include "SVGFEImage.h" |
| 31 #include "SVGFilterPrimitiveStandardAttributes.h" | 29 #include "SVGFilterPrimitiveStandardAttributes.h" |
| 32 #include "SVGLangSpace.h" | 30 #include "SVGLangSpace.h" |
| 33 #include "SVGURIReference.h" | 31 #include "SVGURIReference.h" |
| 32 #include "core/loader/cache/CachedImage.h" |
| 33 #include "core/loader/cache/CachedResourceHandle.h" |
| 34 #include "core/platform/graphics/ImageBuffer.h" | 34 #include "core/platform/graphics/ImageBuffer.h" |
| 35 | 35 |
| 36 namespace WebCore { | 36 namespace WebCore { |
| 37 | 37 |
| 38 class SVGFEImageElement : public SVGFilterPrimitiveStandardAttributes, | 38 class SVGFEImageElement : public SVGFilterPrimitiveStandardAttributes, |
| 39 public SVGURIReference, | 39 public SVGURIReference, |
| 40 public SVGLangSpace, | 40 public SVGLangSpace, |
| 41 public SVGExternalResourcesRequired, | 41 public SVGExternalResourcesRequired, |
| 42 public CachedImageClient { | 42 public CachedImageClient { |
| 43 public: | 43 public: |
| (...skipping 25 matching lines...) Expand all Loading... |
| 69 DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesReq
uired) | 69 DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesReq
uired) |
| 70 END_DECLARE_ANIMATED_PROPERTIES | 70 END_DECLARE_ANIMATED_PROPERTIES |
| 71 | 71 |
| 72 CachedResourceHandle<CachedImage> m_cachedImage; | 72 CachedResourceHandle<CachedImage> m_cachedImage; |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 } // namespace WebCore | 75 } // namespace WebCore |
| 76 | 76 |
| 77 #endif // ENABLE(SVG) | 77 #endif // ENABLE(SVG) |
| 78 #endif | 78 #endif |
| OLD | NEW |