| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> | 2 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> |
| 3 * Copyright (C) 2006, 2009 Apple Inc. All rights reserved. | 3 * Copyright (C) 2006, 2009 Apple Inc. All rights reserved. |
| 4 * Copyright (C) 2007 Rob Buis <buis@kde.org> | 4 * Copyright (C) 2007 Rob Buis <buis@kde.org> |
| 5 * Copyright (C) 2009 Google, Inc. | 5 * Copyright (C) 2009 Google, Inc. |
| 6 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> | 6 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 virtual void setNeedsBoundariesUpdate() override { m_needsBoundariesUpdate =
true; } | 42 virtual void setNeedsBoundariesUpdate() override { m_needsBoundariesUpdate =
true; } |
| 43 virtual void setNeedsTransformUpdate() override { m_needsTransformUpdate = t
rue; } | 43 virtual void setNeedsTransformUpdate() override { m_needsTransformUpdate = t
rue; } |
| 44 | 44 |
| 45 RenderImageResource* imageResource() { return m_imageResource.get(); } | 45 RenderImageResource* imageResource() { return m_imageResource.get(); } |
| 46 | 46 |
| 47 virtual const AffineTransform& localToParentTransform() const override { ret
urn m_localTransform; } | 47 virtual const AffineTransform& localToParentTransform() const override { ret
urn m_localTransform; } |
| 48 OwnPtr<ImageBuffer>& bufferedForeground() { return m_bufferedForeground; } | 48 OwnPtr<ImageBuffer>& bufferedForeground() { return m_bufferedForeground; } |
| 49 | 49 |
| 50 virtual FloatRect paintInvalidationRectInLocalCoordinates() const override {
return m_paintInvalidationBoundingBox; } | 50 virtual FloatRect paintInvalidationRectInLocalCoordinates() const override {
return m_paintInvalidationBoundingBox; } |
| 51 virtual FloatRect objectBoundingBox() const override { return m_objectBoundi
ngBox; } | 51 virtual FloatRect objectBoundingBox() const override { return m_objectBoundi
ngBox; } |
| 52 virtual bool isOfType(RenderObjectType type) const override { return type ==
RenderObjectSVGImage || RenderSVGModelObject::isOfType(type); } |
| 52 | 53 |
| 53 private: | 54 private: |
| 54 virtual const char* renderName() const override { return "RenderSVGImage"; } | 55 virtual const char* renderName() const override { return "RenderSVGImage"; } |
| 55 virtual bool isSVGImage() const override { return true; } | |
| 56 | 56 |
| 57 virtual FloatRect strokeBoundingBox() const override { return m_objectBoundi
ngBox; } | 57 virtual FloatRect strokeBoundingBox() const override { return m_objectBoundi
ngBox; } |
| 58 | 58 |
| 59 virtual void addFocusRingRects(Vector<LayoutRect>&, const LayoutPoint& addit
ionalOffset, const RenderLayerModelObject* paintContainer) const override; | 59 virtual void addFocusRingRects(Vector<LayoutRect>&, const LayoutPoint& addit
ionalOffset, const RenderLayerModelObject* paintContainer) const override; |
| 60 | 60 |
| 61 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) override; | 61 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) override; |
| 62 | 62 |
| 63 virtual void layout() override; | 63 virtual void layout() override; |
| 64 virtual void paint(PaintInfo&, const LayoutPoint&) override; | 64 virtual void paint(PaintInfo&, const LayoutPoint&) override; |
| 65 | 65 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 78 OwnPtr<RenderImageResource> m_imageResource; | 78 OwnPtr<RenderImageResource> m_imageResource; |
| 79 | 79 |
| 80 OwnPtr<ImageBuffer> m_bufferedForeground; | 80 OwnPtr<ImageBuffer> m_bufferedForeground; |
| 81 }; | 81 }; |
| 82 | 82 |
| 83 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGImage, isSVGImage()); | 83 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGImage, isSVGImage()); |
| 84 | 84 |
| 85 } // namespace blink | 85 } // namespace blink |
| 86 | 86 |
| 87 #endif // RenderSVGImage_h | 87 #endif // RenderSVGImage_h |
| OLD | NEW |