| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) | 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) |
| 3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org> | 3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org> |
| 4 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 4 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
| 5 Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. | 5 Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. |
| 6 | 6 |
| 7 This library is free software; you can redistribute it and/or | 7 This library is free software; you can redistribute it and/or |
| 8 modify it under the terms of the GNU Library General Public | 8 modify it under the terms of the GNU Library General Public |
| 9 License as published by the Free Software Foundation; either | 9 License as published by the Free Software Foundation; either |
| 10 version 2 of the License, or (at your option) any later version. | 10 version 2 of the License, or (at your option) any later version. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 #ifndef CachedImage_h | 23 #ifndef CachedImage_h |
| 24 #define CachedImage_h | 24 #define CachedImage_h |
| 25 | 25 |
| 26 #include "core/loader/cache/CachedResource.h" | 26 #include "core/loader/cache/CachedResource.h" |
| 27 #include "core/platform/graphics/ImageObserver.h" | 27 #include "core/platform/graphics/ImageObserver.h" |
| 28 #include "core/platform/graphics/IntRect.h" | 28 #include "core/platform/graphics/IntRect.h" |
| 29 #include "core/platform/graphics/IntSizeHash.h" | 29 #include "core/platform/graphics/IntSizeHash.h" |
| 30 #include "core/platform/graphics/LayoutSize.h" | 30 #include "core/platform/graphics/LayoutSize.h" |
| 31 #include "core/svg/graphics/SVGImageCache.h" | 31 #include "core/svg/graphics/SVGImageCache.h" |
| 32 #include <wtf/HashMap.h> | 32 #include "wtf/HashMap.h" |
| 33 #include <wtf/Vector.h> | |
| 34 | 33 |
| 35 namespace WebCore { | 34 namespace WebCore { |
| 36 | 35 |
| 37 class CachedImageClient; | 36 class CachedImageClient; |
| 38 class CachedResourceLoader; | 37 class CachedResourceLoader; |
| 39 class FloatSize; | 38 class FloatSize; |
| 40 class MemoryCache; | 39 class MemoryCache; |
| 41 class RenderObject; | 40 class RenderObject; |
| 42 struct Length; | 41 struct Length; |
| 43 | 42 |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 ContainerSizeRequests m_pendingContainerSizeRequests; | 113 ContainerSizeRequests m_pendingContainerSizeRequests; |
| 115 | 114 |
| 116 RefPtr<Image> m_image; | 115 RefPtr<Image> m_image; |
| 117 OwnPtr<SVGImageCache> m_svgImageCache; | 116 OwnPtr<SVGImageCache> m_svgImageCache; |
| 118 bool m_loadingMultipartContent; | 117 bool m_loadingMultipartContent; |
| 119 }; | 118 }; |
| 120 | 119 |
| 121 } | 120 } |
| 122 | 121 |
| 123 #endif | 122 #endif |
| OLD | NEW |