| 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 Apple Computer, Inc. | 3 * Copyright (C) 2006 Apple Computer, Inc. |
| 4 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> | 4 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 5 * Copyright (C) 2007, 2008, 2009 Rob Buis <buis@kde.org> | 5 * Copyright (C) 2007, 2008, 2009 Rob Buis <buis@kde.org> |
| 6 * Copyright (C) 2009 Google, Inc. | 6 * Copyright (C) 2009 Google, Inc. |
| 7 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> | 7 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> |
| 8 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> | 8 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> |
| 9 * | 9 * |
| 10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 if (updateBoundingBox()) | 193 if (updateBoundingBox()) |
| 194 setNeedsLayout(LayoutInvalidationReason::SizeChanged); | 194 setNeedsLayout(LayoutInvalidationReason::SizeChanged); |
| 195 } | 195 } |
| 196 | 196 |
| 197 setShouldDoFullPaintInvalidation(); | 197 setShouldDoFullPaintInvalidation(); |
| 198 } | 198 } |
| 199 | 199 |
| 200 void LayoutSVGImage::addOutlineRects(Vector<LayoutRect>& rects, | 200 void LayoutSVGImage::addOutlineRects(Vector<LayoutRect>& rects, |
| 201 const LayoutPoint&, | 201 const LayoutPoint&, |
| 202 IncludeBlockVisualOverflowOrNot) const { | 202 IncludeBlockVisualOverflowOrNot) const { |
| 203 // this is called from paint() after the localTransform has already been appli
ed | 203 // this is called from paint() after the localTransform has already been |
| 204 // applied |
| 204 rects.append(LayoutRect(paintInvalidationRectInLocalSVGCoordinates())); | 205 rects.append(LayoutRect(paintInvalidationRectInLocalSVGCoordinates())); |
| 205 } | 206 } |
| 206 | 207 |
| 207 } // namespace blink | 208 } // namespace blink |
| OLD | NEW |