| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Research In Motion Limited. All rights reserved. | 2 * Copyright (C) 2011 Research In Motion Limited. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 #include "platform/geometry/FloatSize.h" | 23 #include "platform/geometry/FloatSize.h" |
| 24 #include "platform/geometry/IntSize.h" | 24 #include "platform/geometry/IntSize.h" |
| 25 #include "platform/graphics/Image.h" | 25 #include "platform/graphics/Image.h" |
| 26 #include "wtf/HashMap.h" | 26 #include "wtf/HashMap.h" |
| 27 #include "wtf/PassOwnPtr.h" | 27 #include "wtf/PassOwnPtr.h" |
| 28 #include "wtf/RefPtr.h" | 28 #include "wtf/RefPtr.h" |
| 29 | 29 |
| 30 namespace WebCore { | 30 namespace WebCore { |
| 31 | 31 |
| 32 class ImageResource; | |
| 33 class ImageResourceClient; | 32 class ImageResourceClient; |
| 34 class ImageBuffer; | |
| 35 class SVGImage; | 33 class SVGImage; |
| 36 class SVGImageForContainer; | 34 class SVGImageForContainer; |
| 37 class RenderObject; | 35 class RenderObject; |
| 38 | 36 |
| 39 class SVGImageCache { | 37 class SVGImageCache { |
| 40 WTF_MAKE_FAST_ALLOCATED; | 38 WTF_MAKE_FAST_ALLOCATED; |
| 41 public: | 39 public: |
| 42 ~SVGImageCache(); | 40 ~SVGImageCache(); |
| 43 | 41 |
| 44 static PassOwnPtr<SVGImageCache> create(SVGImage* image) | 42 static PassOwnPtr<SVGImageCache> create(SVGImage* image) |
| (...skipping 13 matching lines...) Expand all Loading... |
| 58 | 56 |
| 59 typedef HashMap<const ImageResourceClient*, RefPtr<SVGImageForContainer> > I
mageForContainerMap; | 57 typedef HashMap<const ImageResourceClient*, RefPtr<SVGImageForContainer> > I
mageForContainerMap; |
| 60 | 58 |
| 61 SVGImage* m_svgImage; | 59 SVGImage* m_svgImage; |
| 62 ImageForContainerMap m_imageForContainerMap; | 60 ImageForContainerMap m_imageForContainerMap; |
| 63 }; | 61 }; |
| 64 | 62 |
| 65 } // namespace WebCore | 63 } // namespace WebCore |
| 66 | 64 |
| 67 #endif // SVGImageCache_h | 65 #endif // SVGImageCache_h |
| OLD | NEW |