| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef SVGImageForContainer_h | 26 #ifndef SVGImageForContainer_h |
| 27 #define SVGImageForContainer_h | 27 #define SVGImageForContainer_h |
| 28 | 28 |
| 29 #if ENABLE(SVG) | 29 #if ENABLE(SVG) |
| 30 | 30 |
| 31 #include "SVGImage.h" | |
| 32 #include "core/platform/graphics/FloatRect.h" | 31 #include "core/platform/graphics/FloatRect.h" |
| 33 #include "core/platform/graphics/FloatSize.h" | 32 #include "core/platform/graphics/FloatSize.h" |
| 34 #include "core/platform/graphics/Image.h" | 33 #include "core/platform/graphics/Image.h" |
| 35 #include "core/platform/graphics/transforms/AffineTransform.h" | 34 #include "core/platform/graphics/transforms/AffineTransform.h" |
| 35 #include "core/svg/graphics/SVGImage.h" |
| 36 | 36 |
| 37 namespace WebCore { | 37 namespace WebCore { |
| 38 | 38 |
| 39 class SVGImageForContainer : public Image { | 39 class SVGImageForContainer : public Image { |
| 40 public: | 40 public: |
| 41 static PassRefPtr<SVGImageForContainer> create(SVGImage* image, const FloatS
ize& containerSize, float zoom) | 41 static PassRefPtr<SVGImageForContainer> create(SVGImage* image, const FloatS
ize& containerSize, float zoom) |
| 42 { | 42 { |
| 43 return adoptRef(new SVGImageForContainer(image, containerSize, zoom)); | 43 return adoptRef(new SVGImageForContainer(image, containerSize, zoom)); |
| 44 } | 44 } |
| 45 | 45 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 76 virtual unsigned decodedSize() const { return 0; } | 76 virtual unsigned decodedSize() const { return 0; } |
| 77 | 77 |
| 78 SVGImage* m_image; | 78 SVGImage* m_image; |
| 79 const FloatSize m_containerSize; | 79 const FloatSize m_containerSize; |
| 80 const float m_zoom; | 80 const float m_zoom; |
| 81 }; | 81 }; |
| 82 } | 82 } |
| 83 | 83 |
| 84 #endif // ENABLE(SVG) | 84 #endif // ENABLE(SVG) |
| 85 #endif // SVGImageForContainer_h | 85 #endif // SVGImageForContainer_h |
| OLD | NEW |