| 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 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
| 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 #include "config.h" | 21 #include "config.h" |
| 22 #include "SVGImageCache.h" | 22 #include "SVGImageCache.h" |
| 23 | 23 |
| 24 #if ENABLE(SVG) | 24 #if ENABLE(SVG) |
| 25 #include "CachedImage.h" | |
| 26 #include "FrameView.h" | 25 #include "FrameView.h" |
| 27 #include "Page.h" | 26 #include "Page.h" |
| 28 #include "SVGImage.h" | 27 #include "SVGImage.h" |
| 29 #include "SVGImageForContainer.h" | 28 #include "SVGImageForContainer.h" |
| 29 #include "core/loader/cache/CachedImage.h" |
| 30 #include "core/platform/graphics/GraphicsContext.h" | 30 #include "core/platform/graphics/GraphicsContext.h" |
| 31 #include "core/platform/graphics/ImageBuffer.h" | 31 #include "core/platform/graphics/ImageBuffer.h" |
| 32 #include "core/rendering/svg/RenderSVGRoot.h" | 32 #include "core/rendering/svg/RenderSVGRoot.h" |
| 33 | 33 |
| 34 namespace WebCore { | 34 namespace WebCore { |
| 35 | 35 |
| 36 SVGImageCache::SVGImageCache(SVGImage* svgImage) | 36 SVGImageCache::SVGImageCache(SVGImage* svgImage) |
| 37 : m_svgImage(svgImage) | 37 : m_svgImage(svgImage) |
| 38 { | 38 { |
| 39 ASSERT(m_svgImage); | 39 ASSERT(m_svgImage); |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 return Image::nullImage(); | 91 return Image::nullImage(); |
| 92 | 92 |
| 93 RefPtr<SVGImageForContainer> imageForContainer = it->value; | 93 RefPtr<SVGImageForContainer> imageForContainer = it->value; |
| 94 ASSERT(!imageForContainer->size().isEmpty()); | 94 ASSERT(!imageForContainer->size().isEmpty()); |
| 95 return imageForContainer.get(); | 95 return imageForContainer.get(); |
| 96 } | 96 } |
| 97 | 97 |
| 98 } // namespace WebCore | 98 } // namespace WebCore |
| 99 | 99 |
| 100 #endif // ENABLE(SVG) | 100 #endif // ENABLE(SVG) |
| OLD | NEW |